From 18808e4aad62a144b0674b8cd994f53d4625947a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Sat, 5 Dec 2020 13:38:45 +0100 Subject: [PATCH] add nginx config for docker stuff --- nginx-site.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nginx-site.conf diff --git a/nginx-site.conf b/nginx-site.conf new file mode 100644 index 0000000..c49b489 --- /dev/null +++ b/nginx-site.conf @@ -0,0 +1,12 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +}