diff options
Diffstat (limited to 'minecraft/templates/map.nginx.conf.j2')
| -rw-r--r-- | minecraft/templates/map.nginx.conf.j2 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/minecraft/templates/map.nginx.conf.j2 b/minecraft/templates/map.nginx.conf.j2 new file mode 100644 index 0000000..a905c9a --- /dev/null +++ b/minecraft/templates/map.nginx.conf.j2 @@ -0,0 +1,11 @@ +server { + listen {{nginx_port}}; + server_name {{nginx_server_name}}; + root {{nginx_root_dir}}; + + index index.html; + + location / { + try_files $uri $uri/ =404; + } +} |
