minecraft/templates/map.nginx.conf.j2
author Luke Hoersten <luke@hoersten.org>
Mon, 03 Aug 2020 12:24:13 -0500
changeset 129 7ced28b4207c
parent 125 5a298f7b44f5
permissions -rw-r--r--
Added worker restats for uwsgi to reduce memory runaway.

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

    index index.html;

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