From a9a3b6cda4ead5f3c51f52a95d519eae5c1fa79b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Lipov=C4=8Dan?= <radim@lipovcan.cz> Date: Tue, 12 Mar 2024 17:44:52 +0100 Subject: [PATCH] =?UTF-8?q?P=C5=99idat=20nginx.conf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..f3f478f --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name stats.minecore.cz; + + root /opt/mcstatsweb/; + index index.html index.htm; + + location / { + try_files $uri $uri/ =404; + } +} \ No newline at end of file