comfycamp/nginx.conf

13 lines
238 B
Nginx Configuration File
Raw Normal View History

2023-10-15 11:14:07 +05:00
server {
root /usr/share/comfycamp;
error_page 404 /404.html;
2023-10-18 22:19:19 +05:00
location ~ \.(png|ico|svg|webp)$ {
2023-10-15 11:14:07 +05:00
add_header Cache-Control "public, max-age=86400";
}
location / {
index index.html index.htm;
}
}