meshmap.net/configs/nginx-http.conf

13 lines
293 B
Plaintext
Raw Normal View History

2024-05-06 15:47:19 -07:00
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";
}
}