minecraft/server/templates/map.nginx.conf.j2
changeset 156 ebd8a21a0e62
parent 125 5a298f7b44f5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/minecraft/server/templates/map.nginx.conf.j2	Sat Jul 03 13:23:46 2021 -0500
@@ -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;
+    }
+}