From e4482f91ed5ddbaa350c59858e082235720abacc Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sat, 3 Jul 2021 13:23:46 -0500 Subject: Added minecraft backup. --- minecraft/server/templates/map.nginx.conf.j2 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 minecraft/server/templates/map.nginx.conf.j2 (limited to 'minecraft/server/templates/map.nginx.conf.j2') diff --git a/minecraft/server/templates/map.nginx.conf.j2 b/minecraft/server/templates/map.nginx.conf.j2 new file mode 100644 index 0000000..a905c9a --- /dev/null +++ b/minecraft/server/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; + } +} -- cgit v1.2.3