Reputation: 289
I have a PostGIS database on Heroku and I want to connect my external GeoServer to it. I can't do it because Geoserver does not support SSL and Heroku requires it.
Is there any way of disabling Heroku postgres SSL?
Thanks in advance
Upvotes: 3
Views: 1871
Reputation: 324325
If you do run into a client that doesn't support SSL at all, you can possibly proxy it using a tool like stunnel
.
Upvotes: 0
Reputation: 1736
The simplified GeoServer UI does not allow to configure SSL connections, but you can setup a JNDI connection pool and provide all JDBC parameters you want that way:
Upvotes: 4