Přidat nginx.conf
Some checks are pending
Build Minecraft Stats Ownercz Image / Build-Minecraft-Stats-Image (push) Waiting to run

This commit is contained in:
Radim Lipovčan 2024-03-12 17:44:52 +01:00
parent 9ae9579bad
commit a9a3b6cda4

11
nginx.conf Normal file
View File

@ -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;
}
}