graal-web-app-example
graal-web-app-example copied to clipboard
ssl mode for port 5432
How would you use ssl mode to connect to the postgres port #5432?
If Postgres is configured with SSL support, you should be able to either add :ssl true
flag, or use the :connection-uri
option to connect with ssl=true
set, e.g: jdbc:postgresql://localhost/test?user=fred&password=secret&ssl=true"
. I haven't tested this myself though.