Files
cnstiout 1cbeb4a0f9
Build and publish Docker image / docker (push) Waiting to run
Initial Botsu Cloud portal
2026-06-30 17:25:18 +02:00

29 lines
528 B
Plaintext

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = /healthz {
access_log off;
add_header Content-Type text/plain;
return 200 "ok\n";
}
location = /index.html {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:css|js|mjs|png|jpg|jpeg|gif|ico|svg|webp|woff2?)$ {
expires 30d;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
}