Migrate calvana API into quikcue-site: add Node.js server, update Dockerfile, add migrated HTML pages

This commit is contained in:
2026-03-10 06:27:11 +08:00
parent 0526bf27f7
commit 5981d24104
8 changed files with 314 additions and 11 deletions
+9
View File
@@ -12,6 +12,15 @@ server {
absolute_redirect off;
# Proxy /api to quikcue-api service (ships/oops live ship log)
location /api/ {
proxy_pass http://quikcue-api:3001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Redirect /work/ to first case study (no bare index = was 403)
location = /work/ {
return 301 /work/charityright/;