Skip to content

1.0.8

Choose a tag to compare

@DMJoh DMJoh released this 02 Oct 20:13
a8b2749

⚠️ BREAKING CHANGES

Environment variable structure simplified for better reverse proxy support.

Expect Bugs

Migration Required

Removed: BACKEND_HOST, BACKEND_PORT, FRONTEND_HOST, FRONTEND_PORT
Added: BACKEND_URL, FRONTEND_URL, BACKEND_DOCKER_PORT, FRONTEND_DOCKER_PORT
Optional: CORS_ORIGIN (FRONTEND_URL is auto-allowed)

Migration:

# OLD → NEW
BACKEND_HOST=192.168.1.100  → BACKEND_URL=http://192.168.1.100:3000/api
BACKEND_PORT=3000           → BACKEND_DOCKER_PORT=3000
FRONTEND_HOST=192.168.1.100 → FRONTEND_URL=http://192.168.1.100:8080
FRONTEND_PORT=8080          → FRONTEND_DOCKER_PORT=8080

Why: Full URLs support custom domains, HTTPS, and path-based routing. Fixes reverse proxy scenarios.

Bug Fixes

  • Fixed ERR_BLOCKED_BY_CLIENT errors from strict CORS policy
  • Multi-origin CORS support (localhost, 127.0.0.1, configured URLs)
  • Port normalization for 80/443
  • Ad blocker compatibility (renamed /auth/check-setup to /auth/initial-config)

What's Changed

Full Changelog: 1.0.7...1.0.8