0

In PostgreSQL with Password authentication , if SSL = on , in postgresql.conf file , then can the client connect without the SSL certificate on his side ?

Please help.

MSTechnie
  • 175
  • 10

1 Answers1

1

Enabling SSL (SSL = on) will still allow both normal and SSL connections. However, the pg_hba.conf file can be configured to allow only SSL (or both) through using the hostssl and clientcert option. See here for more info

Rixter
  • 11
  • 2