mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
make database connections persistant
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
b076d5ea1a
commit
dace781b4e
3 changed files with 8 additions and 18 deletions
7
Containers/nextcloud/config/postgresql.php
Normal file
7
Containers/nextcloud/config/postgresql.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'dbuser' => 'oc_' . getenv('POSTGRES_USER'),
|
||||
'dbpassword' => getenv('POSTGRES_PASSWORD'),
|
||||
'db_name' => getenv('POSTGRES_DB'),
|
||||
'dbpersistent' => true,
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue