mirror of https://github.com/zulip/zulip.git
Reorganize local_settings_template to put mandatory fields near top.
(imported from commit b5d447962a5e7c008e9aba44388f244359520fb4)
This commit is contained in:
parent
0299964051
commit
729f7460d4
|
@ -5,12 +5,31 @@ EXTERNAL_HOST = ''
|
|||
|
||||
# This is the Zulip Administrator email address
|
||||
ZULIP_ADMINISTRATOR = ''
|
||||
|
||||
# This is the domain for your organization
|
||||
ADMIN_DOMAIN = ''
|
||||
|
||||
# These credentials are for communication with the central Zulip deployment manager
|
||||
DEPLOYMENT_ROLE_NAME = ''
|
||||
DEPLOYMENT_ROLE_KEY = ''
|
||||
|
||||
# Enable at least one of the following authentication backends.
|
||||
AUTHENTICATION_BACKENDS = (
|
||||
# 'zproject.backends.EmailAuthBackend', # Email and password
|
||||
# 'zerver.views.remote_user_sso', # Local SSO
|
||||
# 'zproject.backends.GoogleBackend', # Google Apps
|
||||
)
|
||||
|
||||
# When using SSO: If REMOTE_USER only provides a username, append this domain
|
||||
# to the returned value.
|
||||
SSO_APPEND_DOMAIN = None
|
||||
|
||||
# Make session cookies expire when the browser closes
|
||||
SESSION_EXPIRE_AT_BROWSER_CLOSE = False
|
||||
|
||||
# Session cookie expiry in seconds after the last page load
|
||||
SESSION_COOKIE_AGE = 1209600 # 2 weeks
|
||||
|
||||
# Configure the outgoing SMTP server below. For outgoing email
|
||||
# via a GMail SMTP server, EMAIL_USE_TLS must be True and the
|
||||
# outgoing port must be 587. The EMAIL_HOST is prepopulated
|
||||
|
@ -66,23 +85,6 @@ EMAIL_GATEWAY_IMAP_PORT = 993
|
|||
# must be delivered to this folder
|
||||
EMAIL_GATEWAY_IMAP_FOLDER = "INBOX"
|
||||
|
||||
# When using SSO: If REMOTE_USER only provides a username, append this domain
|
||||
# to the returned value.
|
||||
SSO_APPEND_DOMAIN = None
|
||||
|
||||
# Enable at least one of the following authentication backends.
|
||||
AUTHENTICATION_BACKENDS = (
|
||||
# 'zproject.backends.EmailAuthBackend', # Email and password
|
||||
# 'zerver.views.remote_user_sso', # Local SSO
|
||||
# 'zproject.backends.GoogleBackend', # Google Apps
|
||||
)
|
||||
|
||||
# Make session cookies expire when the browser closes
|
||||
SESSION_EXPIRE_AT_BROWSER_CLOSE = False
|
||||
|
||||
# Session cookie expiry in seconds after the last page load
|
||||
SESSION_COOKIE_AGE = 1209600 # 2 weeks
|
||||
|
||||
# The following keys are automatically generated during the install process
|
||||
# PLEASE DO NOT EDIT THEM
|
||||
CAMO_KEY = ''
|
||||
|
|
Loading…
Reference in New Issue