Hi,
I'm deploying a Django app to Heroku using the config function, so far it worked well.
now I'm trying to scale a bit, so I added pgbouncer to the app's Procfile.
I think this will be an issue with configuration, seeing as its now an old issue I am going to close. If anyone would like to add to this issue please do.
Hi, I'm deploying a Django app to Heroku using the config function, so far it worked well. now I'm trying to scale a bit, so I added pgbouncer to the app's Procfile.
but this crashes the server with the error:
django.db.utils.OperationalError: server does not support SSL, but SSL was required
My settings:
DATABASES = {'default': dj_database_url.config(conn_max_age=600, ssl_require=True)}