Compare commits
2 commits
9a7fd0e155
...
a3b2bc5361
Author | SHA1 | Date | |
---|---|---|---|
a3b2bc5361 | |||
7c9e131f67 |
2 changed files with 4 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
# https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-config-php-file
|
||||
$CONFIG = json_decode(file_get_contents("/etc/nextcloud/managed.config.json"));
|
||||
$CONFIG = json_decode(file_get_contents("/etc/nextcloud/managed.config.json"), $associative = true);
|
||||
|
|
|
@ -125,10 +125,10 @@ def config(metadata):
|
|||
'memcache.local': '\OC\Memcache\Redis',
|
||||
'memcache.locking': '\OC\Memcache\Redis',
|
||||
'memcache.distributed': '\OC\Memcache\Redis',
|
||||
'redis':{
|
||||
'redis': {
|
||||
'host': '/var/run/redis/nextcloud.sock'
|
||||
},
|
||||
'trusted_domains':[
|
||||
'trusted_domains': [
|
||||
'localhost',
|
||||
'127.0.0.1',
|
||||
metadata.get('nextcloud/hostname'),
|
||||
|
@ -136,7 +136,7 @@ def config(metadata):
|
|||
'log_type': 'syslog',
|
||||
'syslog_tag': 'nextcloud',
|
||||
'logfile': '',
|
||||
'loglevel':3,
|
||||
'loglevel': 3,
|
||||
'default_phone_region': 'DE',
|
||||
'versions_retention_obligation': 'auto, 90',
|
||||
'simpleSignUpLink.shown': False,
|
||||
|
|
Loading…
Reference in a new issue