minecraft/templates/map.nginx.conf.j2
changeset 125 5a298f7b44f5
equal deleted inserted replaced
124:870c04ac783b 125:5a298f7b44f5
       
     1 server {
       
     2     listen {{nginx_port}};
       
     3     server_name {{nginx_server_name}};
       
     4     root {{nginx_root_dir}};
       
     5 
       
     6     index index.html;
       
     7 
       
     8     location / {
       
     9         try_files $uri $uri/ =404;
       
    10     }
       
    11 }