mirror of https://github.com/zulip/zulip.git
docs: Link to postgres documentation for SSL modes.
For some historical reason we'd had the Postgres documentation on valid SSL modes copied into the Zulip settings.py template file. This fixes that historical artifact.
This commit is contained in:
parent
dd10d30d1e
commit
900cd13865
|
@ -250,16 +250,9 @@ ENABLE_GRAVATAR = True
|
|||
# To access an external postgres database you should define the host name in
|
||||
# REMOTE_POSTGRES_HOST, you can define the password in the secrets file in the
|
||||
# property postgres_password, and the SSL connection mode in REMOTE_POSTGRES_SSLMODE
|
||||
# Different options are:
|
||||
# disable: I don't care about security, and I don't want to pay the overhead of encryption.
|
||||
# allow: I don't care about security, but I will pay the overhead of encryption if the server insists on it.
|
||||
# prefer: I don't care about encryption, but I wish to pay the overhead of encryption if the server supports it.
|
||||
# require: I want my data to be encrypted, and I accept the overhead. I trust that the network will make sure
|
||||
# I always connect to the server I want.
|
||||
# verify-ca: I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server
|
||||
# that I trust.
|
||||
# verify-full: I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server
|
||||
# I trust, and that it's the one I specify.
|
||||
# Valid values for REMOTE_POSTGRES_SSLMODE are documented in the
|
||||
# "SSL Mode Descriptions" table in
|
||||
# https://www.postgresql.org/docs/9.5/static/libpq-ssl.html
|
||||
#REMOTE_POSTGRES_HOST = 'dbserver.example.com'
|
||||
#REMOTE_POSTGRES_SSLMODE = 'require'
|
||||
|
||||
|
|
Loading…
Reference in New Issue