From d694c590e257e38f439640faee68ad6ba0adfd6f Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Mon, 16 Oct 2023 21:24:46 +0200 Subject: [PATCH] Add nginx.conf --- nginx.conf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 nginx.conf 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; + } + } +}