mirror of
https://github.com/nextcloud/docker.git
synced 2025-01-20 21:03:53 +01:00
10 lines
292 B
PHP
10 lines
292 B
PHP
<?php
|
|
$AUTOCONFIG = array(
|
|
'directory' => '/var/www/html/data',
|
|
'dbtype' => 'mysql',
|
|
'dbname' => getenv('MYSQL_DATABASE'),
|
|
'dbuser' => getenv('MYSQL_USER'),
|
|
'dbpass' => getenv('MYSQL_PASSWORD'),
|
|
'dbhost' => 'db',
|
|
'dbtableprefix' => '',
|
|
);
|