Last active
March 5, 2025 05:17
-
-
Save tigusigalpa/2d1ec6e258ed96221abf9679622d274a to your computer and use it in GitHub Desktop.
Laravel PostgreSQL SSL encryption connection config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 1. You have to store your client SSL certificates on your Laravel server, in my case this is /var/certs/mydomain.com/... | |
* 2. You have to right select SSL mode for PostgreSQL (see https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-SSLMODE-STATEMENTS), verify-full means your server CA is signed for real domain name for the PostgreSQL server (recommended) | |
* 3. Go to Laravel config/database.php to the section 'pgsql' and extend it to the following: | |
*/ | |
return [ | |
/*...*/ | |
'connections' => [ | |
/*'mysql' etc*/ | |
'pgsql' => [ | |
/*driver, host, database, username etc*/ | |
// sslmode | |
// depends on your security level | |
// @link https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-SSLMODE-STATEMENTS | |
'sslmode' => 'verify-ca', | |
/** DEPRECATED SINCE LARAVEL 10: 'option' KEY, */ | |
/** THANKS TO @andrewdevelop **/ | |
/*'options' => [ | |
'sslrootcert' => '/var/certs/mysite.com/postgresql-root.crt', | |
'sslcert' => '/var/certs/mysite.com/postgresql-client.crt', | |
'sslkey' => '/var/certs/mysite.com/postgresql-client.key', | |
]*/ | |
/** --- WORKING FOR NOW --- */ | |
'sslrootcert' => '/var/certs/mysite.com/postgresql-root.crt', | |
'sslcert' => '/var/certs/mysite.com/postgresql-client.crt', | |
'sslkey' => '/var/certs/mysite.com/postgresql-client.key', | |
] | |
] | |
]; |
Thanks @andrewdevelop +1
I'm not sure exactly since which version of Laravel, but since version 10 the syntax has definitely changed. Instead of the options key, now the SSL parameters must be specified in the pgsql array
<?php return [ 'connections' => [ 'pgsql' => [ // default settings here 'sslmode' => 'verify-full', 'sslrootcert' => base_path('/path/to/ca.crt'), 'sslcert' => base_path('/path/to/client.crt'), 'sslkey' => base_path('/path/to/client.key'), ], //...
Thanks a lot!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure exactly since which version of Laravel, but since version 10 the syntax has definitely changed. Instead of the options key, now the SSL parameters must be specified in the pgsql array