minecraft/templates/map.nginx.conf.j2
author Luke Hoersten <luke@hoersten.org>
Sun, 25 Apr 2021 13:35:41 -0500
changeset 149 f37b313ee564
parent 125 5a298f7b44f5
permissions -rw-r--r--
Version bumps.

server {
    listen {{nginx_port}};
    server_name {{nginx_server_name}};
    root {{nginx_root_dir}};

    index index.html;

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