mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 08:43:37 +00:00
Fix API URL config: use Next.js rewrite proxy instead of NEXT_PUBLIC_*
NEXT_PUBLIC_* is baked at build time so runtime docker-compose environment vars have no effect. Instead: - next.config.ts rewrites /api/* -> API_BASE_URL/api/* at the server level - api.ts uses relative paths (no env var in client bundle at all) - docker-compose passes API_BASE_URL=http://cvfs-backend:8080 at runtime - Dockerfile no longer needs any build args Requests: browser -> Next.js server (/api/*) -> cvfs-backend:8080 (/api/*) https://claude.ai/code/session_01Xmxm2QLgFBgRJyYD6VukR6
This commit is contained in:
@@ -11,8 +11,8 @@ services:
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./docker/webapp.Dockerfile
|
||||
args:
|
||||
- NEXT_PUBLIC_API_BASE_URL=https://api.cv.alves.world
|
||||
environment:
|
||||
- API_BASE_URL=http://cvfs-backend:8080
|
||||
networks:
|
||||
- dokploy-network
|
||||
- cvfs-network
|
||||
|
||||
Reference in New Issue
Block a user