socket change

pull/66/head
Chris Veilleux 2019-03-04 00:43:56 -06:00
parent f1bd6ce1e2
commit 59872f4d24
2 changed files with 3 additions and 2 deletions

View File

@ -2,4 +2,4 @@
master = true
module = sso_api.api:sso
processes = 4
socket = :7102
socket = :5000

View File

@ -27,7 +27,8 @@ db_connection_config = DatabaseConnectionConfig(
db_name=os.environ['DB_NAME'],
password=os.environ['DB_PASSWORD'],
port=os.environ.get('DB_PORT', 5432),
user=os.environ['DB_USER']
user=os.environ['DB_USER'],
sslmode=os.environ.get('DB_SSLMODE')
)