Add nginx.conf
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 10s

This commit is contained in:
Tibo De Peuter 2023-10-16 21:24:46 +02:00
parent 9201c0d107
commit d694c590e2

24
nginx.conf Normal file
View file

@ -0,0 +1,24 @@
user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 0.0.0.0:80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /.well-known {
alias /usr/share/nginx/html/.well-known;
}
}
}