fix postgres port and root ca handling
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-10-03 14:05:49 +02:00
parent a782f76217
commit 2d842f0394
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,6 @@ freshrss_extensions_enabled:
- "Tumblr-GDPR"
freshrss_postgres_ssl_mode: disable
freshrss_postgres_ssl_rootcert: /etc/ssl/certs/ca-certificates.crt
freshrss_postgres_server: "{{ inventory_hostname }}"
freshrss_postgres_port: 5432
freshrss_postgres_superuser: postgres

View File

@ -69,7 +69,8 @@ services:
- FRESHRSS_CURLOPT_PROXYUSERPWD={{ freshrss_curlopt_proxyuserpwd }}
{% endif %}
- FRESHRSS_DB_TYPE=pgsql
- FRESHRSS_DB_HOST={{ freshrss_postgres_server }}:{{ freshrss_postgres_port }};sslmode={{ freshrss_postgres_ssl_mode }};sslrootcert={{ freshrss_postgres_ssl_rootcert }}
- FRESHRSS_DB_HOST={{ freshrss_postgres_server }};sslmode={{ freshrss_postgres_ssl_mode }};sslrootcert=ca-certificates.crt
- FRESHRSS_DB_PORT={{ freshrss_postgres_port }}
- FRESHRSS_DB_USER={{ freshrss_postgres_user.name }}
- FRESHRSS_DB_PASSWORD={{ freshrss_postgres_user.password }}
- FRESHRSS_DB_BASE={{ freshrss_postgres_db.name }}