We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a simple way to add ssl authentication for the postgres user using a self signed certificate
Such option is not available
génération d'un certificat autosigné (user postgres)
mkdir /var/lib/pgsql/ssl; cd /var/lib/pgsql/ssl openssl req -new -x509 -days 365 -nodes -text -out pg-server.crt -keyout pg-server.key -subj "/CN=hostname" chmod og-rwx pg-server.key
modif conf PG au niveau du host
postgresql_global_config_options_extra: option : ssl value : on option : ssl_cert_file value : /var/lib/pgsql/ssl/pg-server.crt option : ssl_key_file value : /var/lib/pgsql/ssl/pg-server.key
Continual improvement
The text was updated successfully, but these errors were encountered:
nathaliereslou
No branches or pull requests
Expected Behavior
Have a simple way to add ssl authentication for the postgres user using a self signed certificate
Current Behavior
Such option is not available
Possible Solution
génération d'un certificat autosigné (user postgres)
modif conf PG au niveau du host
Context
Continual improvement
Your Environment
The text was updated successfully, but these errors were encountered: