Skip to content

Commit

Permalink
prod_settings_template.py: Fix line with length greater than 120.
Browse files Browse the repository at this point in the history
This updates file zproject/prod_settings_template.py.
  • Loading branch information
taranjeet authored and timabbott committed Aug 19, 2016
1 parent 230cc22 commit 86ecf28
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions zproject/prod_settings_template.py
Expand Up @@ -187,9 +187,12 @@
# 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.
# 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.
#REMOTE_POSTGRES_HOST = 'dbserver.example.com'
#REMOTE_POSTGRES_SSLMODE = 'require'

Expand Down

0 comments on commit 86ecf28

Please sign in to comment.