From 46c4e2c305a9c51d95aaf9f2cb77c37544853f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 14 Jun 2021 09:50:03 +0200 Subject: [PATCH] add nginx config --- 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..6c09d11 --- /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; + } +} \ No newline at end of file