minecraft/templates/map.nginx.conf.j2
author Luke Hoersten <luke@hoersten.org>
Mon, 16 Nov 2020 16:42:59 -0600
changeset 143 7d4a477be685
parent 125 5a298f7b44f5
permissions -rw-r--r--
Updated pleroma to 2.2.0 and added new dep.

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

    index index.html;

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