From cdc94d27196846f33feb79a1701e94bb71e348b7 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Tue, 6 Jun 2023 15:11:41 +0000 Subject: [PATCH] prod_settings_template: Document REALM_HOSTS configuration. This was in docs/production/multiple-organizations.md, but not the settings template. --- zproject/prod_settings_template.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/zproject/prod_settings_template.py b/zproject/prod_settings_template.py index b4522f3dca..fd13e9aab3 100644 --- a/zproject/prod_settings_template.py +++ b/zproject/prod_settings_template.py @@ -699,6 +699,15 @@ SOCIAL_AUTH_SAML_SUPPORT_CONTACT = { ################ ## Miscellaneous settings. +## If you host multiple organizations on the same Zulip server, you +## can customize the hostname that one of them uses by adding it here. +## See https://zulip.readthedocs.io/en/latest/production/multiple-organizations.html#other-hostnames +## Note that you still need SSL certificates for this other custom hostname: +## https://zulip.readthedocs.io/en/latest/production/multiple-organizations.html#ssl-certificates +# REALM_HOSTS = { +# "example": "hostname.example.com", +# } + ## How long outgoing webhook requests time out after # OUTGOING_WEBHOOK_TIMEOUT_SECONDS = 10