From 9e6b21c278c50431abfcc1e390426a0447eddbf1 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Mon, 27 Jul 2020 19:44:18 -0500 Subject: Added dynmap to minecraft. --- minecraft/templates/map.nginx.conf.j2 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 minecraft/templates/map.nginx.conf.j2 (limited to 'minecraft/templates/map.nginx.conf.j2') 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; + } +} -- cgit v1.2.3