Files
hermes-mcp/product/site/nginx-site.conf
2026-04-29 09:52:53 -04:00

20 lines
373 B
Plaintext

server {
listen 8080;
server_name squaremcp.com www.squaremcp.com;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /index.html {
add_header Cache-Control "no-cache";
}
location ~* \.(css|js)$ {
add_header Cache-Control "public, max-age=3600";
}
}