From f458a3faea41069eb832440361982ce62478e6ea Mon Sep 17 00:00:00 2001 From: Beeranco <49772805+Beeranco@users.noreply.github.com> Date: Wed, 23 Aug 2023 04:31:19 +0200 Subject: [PATCH] Create site.conf --- Dashboard/site.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dashboard/site.conf diff --git a/Dashboard/site.conf b/Dashboard/site.conf new file mode 100644 index 0000000..7e0503e --- /dev/null +++ b/Dashboard/site.conf @@ -0,0 +1,12 @@ +server { + listen 80 default_server; + listen [::]:80 default_server; + + root /var/www/html; + index index.html index.htm index.nginx-debian.html; + + server_name _; + location / { + try_files $uri $uri/ =404; + } +}