2020-07-25 01:07:53 +02:00
|
|
|
# Change organization URL
|
|
|
|
|
|
|
|
Zulip supports changing the URL for an organization. Changing the
|
|
|
|
organization URL is a disruptive operation for users:
|
|
|
|
|
|
|
|
* Users will be logged out of existing sessions on the web, mobile and
|
2020-08-11 02:20:10 +02:00
|
|
|
desktop apps and need to log in again.
|
2020-07-25 01:07:53 +02:00
|
|
|
* Any [API clients](/api) or [integrations](/integrations) will need
|
|
|
|
to be updated to point to the new organization URL.
|
|
|
|
|
|
|
|
We recommend using a [wildcard
|
|
|
|
mention](/help/mention-a-user-or-group#mention-everyone-on-a-stream)
|
|
|
|
in an announcement stream to notify users that they need to update
|
|
|
|
their clients.
|
|
|
|
|
|
|
|
If you're using Zulip Cloud (E.g. `https://example.zulipchat.com`),
|
|
|
|
you can request a change by emailing support@zulip.com.
|
|
|
|
|
|
|
|
## Self-hosting
|
|
|
|
|
2020-08-24 21:22:17 +02:00
|
|
|
If you're self-hosting, you can change the root domain of your server
|
2020-07-25 01:07:53 +02:00
|
|
|
by changing the `EXTERNAL_HOST` [setting][zulip-settings]. If you're
|
|
|
|
[hosting multiple organizations][zulip-multiple-organizations] and
|
|
|
|
want to change the subdomain for one of them, you can use
|
2020-10-26 19:47:59 +01:00
|
|
|
`do_change_realm_subdomain(realm, "new_subdomain")` in a [management
|
2020-07-25 01:07:53 +02:00
|
|
|
shell][management-shell].
|
|
|
|
|
|
|
|
[zulip-settings]: https://zulip.readthedocs.io/en/stable/production/settings.html
|
|
|
|
[zulip-multiple-organizations]: https://zulip.readthedocs.io/en/stable/production/multiple-organizations.html
|
|
|
|
[management-shell]: https://zulip.readthedocs.io/en/stable/production/management-commands.html#manage-py-shell
|