add env variable for custom db port
This commit is contained in:
parent
a6850c8478
commit
e96febfb23
@ -1,5 +1,6 @@
|
||||
* ENHANCEMENT
|
||||
* better error handling in entrypoint script
|
||||
* add env variable for custom DB port
|
||||
|
||||
* BUGFIX
|
||||
* symling `/etc/ssl/certs/ca-certificates.crt` to freshrss root as workaround for [#2549](https://github.com/FreshRSS/FreshRSS/issues/2549)
|
||||
|
@ -95,6 +95,7 @@ FRESHRSS_CURLOPT_PROXYAUTH=
|
||||
FRESHRSS_CURLOPT_PROXYUSERPWD=
|
||||
FRESHRSS_DB_TYPE="sqlite"
|
||||
FRESHRSS_DB_HOST="localhost"
|
||||
FRESHRSS_DB_PORT=
|
||||
FRESHRSS_DB_USER=
|
||||
FRESHRSS_DB_PASSWORD=
|
||||
FRESHRSS_DB_BASE=
|
||||
|
@ -55,6 +55,7 @@ return array(
|
||||
'db' => array(
|
||||
'type' => '{{ getenv "FRESHRSS_DB_TYPE" "sqlite" }}',
|
||||
'host' => '{{ getenv "FRESHRSS_DB_HOST" "localhost" }}',
|
||||
'port' => '{{ getenv "FRESHRSS_DB_PORT" }}'
|
||||
'user' => '{{ getenv "FRESHRSS_DB_USER" }}',
|
||||
'password' => '{{ getenv "FRESHRSS_DB_PASSWORD" }}',
|
||||
'base' => '{{ getenv "FRESHRSS_DB_BASE" }}',
|
||||
|
Reference in New Issue
Block a user