Initial Botsu Cloud portal
Build and publish Docker image / docker (push) Waiting to run

This commit is contained in:
cnstiout
2026-06-30 17:25:18 +02:00
commit 1cbeb4a0f9
24 changed files with 3777 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
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;
}
}