Reputation: 57
M1 Mac Monterey12.1
Error: The server does not support SSL connections
I used a postgres server to I ran the following code.
DATABASE_URL=$DATABASE_URL NODE_ENV=production yarn develop
I'm using strapi with a postgres server.
I did a breww install openssl.
Upvotes: 0
Views: 11115
Reputation: 247625
The PostgreSQL server does not support SSL connections. As per the documentation, you should add sslmode=disable
to your JDBC connection URL or as connection parameter.
Upvotes: 3