12 lines
238 B
Nginx Configuration File
12 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;
|
|
}
|
|
}
|