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