From ee3672993a1239099046fa49b6bc2ef630522fb3 Mon Sep 17 00:00:00 2001 From: Michel Wilhelm Date: Sat, 7 Nov 2020 22:55:41 -0300 Subject: [PATCH] Adding nginx.conf, the forgotten --- nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..ed11d3a --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html =404; + } + + include /etc/nginx/extra-conf.d/*.conf; +}