Docker-Image-Minecraft-Stats/nginx.conf

11 lines
179 B
Nginx Configuration File

server {
listen 80;
server_name stats.minecore.cz;
root /opt/mcstatsweb/;
index index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
}