diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..e6b69ba --- /dev/null +++ b/nginx.conf @@ -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; + } + } +}