Skip to content

Commit

Permalink
turn ssl off for postgresql
Browse files Browse the repository at this point in the history
  • Loading branch information
snopoke committed May 21, 2015
1 parent 5e7822e commit 7675f09
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions ansible/roles/commcarehq/templates/localsettings.py.j2
Expand Up @@ -14,9 +14,6 @@ DATABASES = {
'USER': '{{ localsettings.PG_DATABASE_USER }}',
'PASSWORD': '{{ localsettings.PG_DATABASE_PASSWORD }}',
'HOST': '{{ localsettings.PG_DATABASE_HOST }}',
'OPTIONS': {
'sslmode': 'require',
},
},
}

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/postgresql/templates/postgresql.conf.j2
Expand Up @@ -81,7 +81,7 @@ unix_socket_directory = '/var/run/postgresql' # (change requires restart)
# - Security and Authentication -

#authentication_timeout = 1min # 1s-600s
ssl = true # (change requires restart)
ssl = false # (change requires restart)
#ssl_ciphers = 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH' # allowed SSL ciphers
# (change requires restart)
#ssl_renegotiation_limit = 512MB # amount of data between renegotiations
Expand Down

0 comments on commit 7675f09

Please sign in to comment.