You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you place your own reverse proxy in front of Team Edition instead of the bundled `web-proxy`, it must forward the following headers so the backend can resolve the correct public origin.
82
+
83
+
The backend looks for the public origin in this order (first non-empty wins):
84
+
85
+
-`Origin` — public URL the client used (`scheme://host[:port]`).
86
+
-`X-Origin` — fallback when `Origin` is absent.
87
+
-`Referer` — last-resort fallback.
88
+
-`X-Forwarded-Scheme` — original scheme (`http` / `https`).
89
+
-`X-Forwarded-Proto` — fallback for `X-Forwarded-Scheme` (`http` / `https`).
90
+
-`X-Forwarded-Host` — original host. If both the scheme and host above are set, they override `Origin` / `X-Origin` / `Referer`.
91
+
-`X-Forwarded-Port` — original port (only needed if it differs from 80/443).
92
+
79
93
## Configuring and starting Team Edition cluster
80
94
81
95
1. Clone Git repository to your local machine by running the following command in your terminal:
0 commit comments