You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud-docker/.examples/docker-compose/with-nginx-proxy/postgres/fpm/app/autoconfig.php

11 lines
295 B

<?php
$AUTOCONFIG = array(
'directory' => '/var/www/html/data',
'dbtype' => 'pgsql',
'dbname' => getenv('POSTGRES_DB'),
'dbuser' => getenv('POSTGRES_USER'),
'dbpass' => getenv('POSTGRES_PASSWORD'),
'dbhost' => 'db',
'dbtableprefix' => '',
);