Skip to content

Commit

Permalink
Merge pull request #94 from norcalipa/noraclipa/remove-ssl-prod
Browse files Browse the repository at this point in the history
Removing SSL from prod configuration to allow local running on fats
  • Loading branch information
norcalipa authored Apr 4, 2024
2 parents 11f2ca8 + b0b8e60 commit 1e7abd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crank/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
'HOST': os.environ.get('DB_HOST'),
'PORT': os.environ.get('DB_PORT'),
'USER': os.environ.get('DB_USER'),
'PASSWORD': os.environ.get('DB_PASS'),
'OPTIONS': {'ssl': {'ca': os.environ.get('MYSQL_ATTR_SSL_CA')}}
'PASSWORD': os.environ.get('DB_PASS')
# 'OPTIONS': {'ssl': {'ca': os.environ.get('MYSQL_ATTR_SSL_CA')}}
}
}
ALLOWED_HOSTS = ['*']
Expand Down

0 comments on commit 1e7abd2

Please sign in to comment.