src.nth.io/

summaryrefslogtreecommitdiff
path: root/minecraft/templates/map.nginx.conf.j2
blob: a905c9a30013d3fcb8b88fd73d8cf60b98eee208 (plain)
1
2
3
4
5
6
7
8
9
10
11
server {
    listen {{nginx_port}};
    server_name {{nginx_server_name}};
    root {{nginx_root_dir}};

    index index.html;

    location / {
        try_files $uri $uri/ =404;
    }
}