fix(deploy): serve under /xll-bi/ prefix and bump host port to 8214
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Reverse proxy at demo-ctx.lnh2e.com forwards /xll-bi/* unchanged to the
container, so the container's nginx must match that location and Vite
must build asset URLs under the same prefix — otherwise the SPA shell
returns 404 and the JS/CSS resolve to /assets/* with no handler.

- nginx.conf: rename location /bi/ → /xll-bi/ (and assets sub-location)
- vite.config.ts: set base: '/xll-bi/' so built index.html references
  /xll-bi/assets/*
- docker-compose.yml: 8114 → 8214 to match the upstream the proxy targets

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
kkfluous
2026-04-29 18:35:08 +08:00
parent c5468d7854
commit f265db46ca
3 changed files with 5 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ services:
bi:
image: harbor.lnh2e.com/lingniu-v1/bi:main-0.0.0
ports:
- "8114:80"
- "8214:80"
deploy:
replicas: 1
restart_policy:

View File

@@ -4,12 +4,12 @@ server {
root /usr/share/nginx/html;
index index.html;
location /bi/ {
location /xll-bi/ {
alias /usr/share/nginx/html/;
try_files $uri $uri/ /bi/index.html;
try_files $uri $uri/ /xll-bi/index.html;
}
location /bi/assets/ {
location /xll-bi/assets/ {
alias /usr/share/nginx/html/assets/;
expires 1y;
add_header Cache-Control "public, immutable";

View File

@@ -6,6 +6,7 @@ import {defineConfig, loadEnv} from 'vite';
export default defineConfig(({mode}) => {
const env = loadEnv(mode, '.', '');
return {
base: '/xll-bi/',
plugins: [react(), tailwindcss()],
define: {
'process.env.GEMINI_API_KEY': JSON.stringify(env.GEMINI_API_KEY),