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