mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-28 13:50:53 +02:00
Add more examples with proxy
This commit is contained in:
parent
01dd1a93f1
commit
4fbd273cb0
47 changed files with 1040 additions and 263 deletions
|
@ -0,0 +1,5 @@
|
|||
FROM nextcloud:apache
|
||||
|
||||
COPY autoconfig.php /usr/src/nextcloud/config/autoconfig.php
|
||||
|
||||
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php
|
|
@ -0,0 +1,10 @@
|
|||
<?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' => '',
|
||||
);
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
),
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue