fix(plane): add http scheme to WEB_URL

WEB_URL needs a scheme for Plane to generate valid links.
Using http:// since Traefik handles SSL termination.
This commit is contained in:
adryserage
2026-02-20 03:04:51 -05:00
parent 38e417b194
commit 36194c6111

View File

@@ -9,7 +9,7 @@ secret_key = "${base64:48}"
[config]
env = [
"Domain=${domain}",
"WEB_URL=${Domain}",
"WEB_URL=http://${Domain}",
"PGHOST=plane-db",
"PGDATABASE=plane",
"POSTGRES_USER=${username}",