mirror of https://github.com/zulip/zulip.git
dev_settings: Dynamically use URL scheme for Zulip services.
The URL scheme is currently static and set to 'http'. This change makes use of the dynamic `EXTERNAL_URI_SCHEME` setting to use the correct protocol.
This commit is contained in:
parent
291197976a
commit
a9289e9d9c
|
@ -206,7 +206,7 @@ SCIM_CONFIG: dict[str, SCIMConfigDict] = {
|
|||
|
||||
SELF_HOSTING_MANAGEMENT_SUBDOMAIN = "selfhosting"
|
||||
DEVELOPMENT_DISABLE_PUSH_BOUNCER_DOMAIN_CHECK = True
|
||||
ZULIP_SERVICES_URL = f"http://push.{EXTERNAL_HOST}"
|
||||
ZULIP_SERVICES_URL = f"{EXTERNAL_URI_SCHEME}push.{EXTERNAL_HOST}"
|
||||
|
||||
ZULIP_SERVICE_PUSH_NOTIFICATIONS = True
|
||||
ZULIP_SERVICE_SUBMIT_USAGE_STATISTICS = True
|
||||
|
|
Loading…
Reference in New Issue