meshmap.net/configs/nginx-http.conf
2024-05-06 18:47:19 -04:00

13 lines
293 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name meshmap.net;
root /data/meshmap.net/website;
location / {
index index.html;
try_files $uri $uri/ =404;
add_header Cache-Control "public, max-age=60";
add_header Vary "Accept-Encoding";
}
}