mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
PG_TLS=true make docker-compose This will add some extra startup commands for the postgres container to generate a key and cert to use for postgres connections. It will also mount in pgssl.conf which has ssl configuration. This can be useful for debugging issues that only surface when using ssl postgres connections.
6 lines
329 B
Plaintext
6 lines
329 B
Plaintext
ssl = on
|
|
ssl_cert_file = '/opt/app-root/src/certs/tls.crt' # server certificate
|
|
ssl_key_file = '/opt/app-root/src/certs/tls.key' # server private key
|
|
#ssl_ca_file # trusted certificate authorities
|
|
#ssl_crl_file # certificates revoked by certificate authorities
|