All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
368 B
Nginx Configuration File
18 lines
368 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location /info/ {
|
|
alias /usr/share/nginx/html/;
|
|
try_files $uri $uri/ /info/index.html;
|
|
}
|
|
|
|
location /info/assets/ {
|
|
alias /usr/share/nginx/html/assets/;
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
}
|