add missing sslrootcert to pg connection url
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
0815b82ff8
commit
409b8d642d
@ -82,7 +82,6 @@ bitwardenrs_db_port: 5432
|
||||
bitwardenrs_db_name: bitwardenrs
|
||||
bitwardenrs_db_user: pgbitwardenrs
|
||||
bitwardenrs_db_password: secure
|
||||
|
||||
bitwardenrs_db_ssl_mode: disable
|
||||
bitwardenrs_db_ssl_rootcert: /etc/ssl/certs/ca-certificates.crt
|
||||
|
||||
|
@ -19,7 +19,7 @@ services:
|
||||
{% endif %}
|
||||
environment:
|
||||
- BITWARDENRS_DOMAIN={{ bitwardenrs_base_url }}
|
||||
- BITWARDENRS_DATABASE_URL=postgresql://{{ bitwardenrs_db_user }}:{{ bitwardenrs_db_password }}@{{ bitwardenrs_db_server }}:{{ bitwardenrs_db_port }}/{{ bitwardenrs_db_name }}?sslmode={{ bitwardenrs_db_ssl_mode }}
|
||||
- BITWARDENRS_DATABASE_URL=postgresql://{{ bitwardenrs_db_user }}:{{ bitwardenrs_db_password }}@{{ bitwardenrs_db_server }}:{{ bitwardenrs_db_port }}/{{ bitwardenrs_db_name }}?sslmode={{ bitwardenrs_db_ssl_mode }}&sslrootcert={{ bitwardenrs_db_ssl_rootcert }}
|
||||
{% if bitwardenrs_templates_folder is defined and bitwardenrs_templates_folder %}
|
||||
- BITWARDENRS_TEMPLATES_FOLDER={{ bitwardenrs_templates_folder }}
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user