comfycamp/nginx.conf
2023-10-18 22:19:19 +05:00

13 lines
238 B
Nginx Configuration File

server {
root /usr/share/comfycamp;
error_page 404 /404.html;
location ~ \.(png|ico|svg|webp)$ {
add_header Cache-Control "public, max-age=86400";
}
location / {
index index.html index.htm;
}
}