docker-nextcloud-stack/objectstore.config.php
yohan ed1f45e8ed Updated Nextcloud version.
Added reverse proxy configuration.
Added optional Nextcloud objectstore configuration.
Added Nextcloud mime configuration.
Added Nextcloud https configuration.
Fixed elasticsearch getting killed when "stop" or "down" is used: due to a docker bug, the new script stop.sh, must be used instead.
2019-12-04 21:41:54 +01:00

20 lines
660 B
PHP

<?php
$CONFIG = array (
'objectstore' => array(
'class' => '\\OC\\Files\\ObjectStore\\Swift',
'arguments' => array(
'username' => 'FIXME',
'password' => 'FIXME',
// the container to store the data in
'bucket' => 'Nextcloud_Files',
'autocreate' => false,
'region' => 'GRA7',
// The Identity / Keystone endpoint
'url' => 'https://auth.cloud.ovh.net/v2.0',
// optional on some swift implementations
'tenantName' => 'FIXME',
'serviceName' => 'swift',
),
),
);