diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/nextcloud/APKBUILD | 4 | ||||
-rw-r--r-- | community/nextcloud/fpm-pool.conf | 6 | ||||
-rw-r--r-- | community/nextcloud/nextcloud-config.php | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/community/nextcloud/APKBUILD b/community/nextcloud/APKBUILD index 70364d807b..a6095fdefc 100644 --- a/community/nextcloud/APKBUILD +++ b/community/nextcloud/APKBUILD @@ -194,7 +194,7 @@ sha512sums="0e409eedbcc0f4e1652085c3e384db373858b0cc116c70361a4d066a08afbd6e7579 a12a73a38bc009d3307ce97bb32fc62ac93e125a77a3d36b31c9d2212953fa17bd5c31f819e0759a0645b1c285817b067143b0b9c3673ce4ab3043fae426a67c nextcloud10-dont-chmod-config.patch ec3921d4d463ed82be0be073af8064048a20f638424d1d39ab46db4252036e87ef2614570be91a5cef0c25c6bcaaf1a2725d2468bdb4a0fbee2b504a4dd0fbc8 dont-update-htaccess.patch 8d3cb1436aa79f1ac0a7b4b3370fcfb5c50dbe811e631cabcb8170fb80da5967a88a15bc39cd04eaccffb3177bdf90fcba2a512e28e034e16d6bc9b445d2d137 app-encryption-info-add-mcrypt.patch -9df8ea433d9fb5578a2de366106aa9004502a92557970ee48f9f3de92705a623a461eb410666f0e55d46023d0a324cd185a0b51957a1b72992779a0f7143d23d nextcloud-config.php +89c941e2719629ee633421c4c75b55026c1a0a6b255e7f1f2c14612c10325045051b16dc5f17975af4a2a34ec187008de2eb15a53ac4cd06d26a5cbbd79fb73a nextcloud-config.php f224d72799ee5819979089eb58978225454223bee597c938681a4f6279eb49297fe9250ac54ccf8bcb33ae262bce43d085affb77723492ee662263710d4008c9 nextcloud.logrotate 35cf156839215113b5d8fb8842b4c1e19a50be3c16be7048879fdd808674e4875dbacf3e2dd884fd182258595b7a137d7d3c2dc602a7ff5613c8b65fae0abe67 nextcloud.confd -b5cdccdffb35e868ec1acb15ec2849cc1c2a00f6064ad21eb591b9694e84df4576f03248f5e814000a48c38096a2a1588dfc79be66691415f2f4ef3b4105d032 fpm-pool.conf" +ebe88e451de5dc84ee8bbcd9af48e2ceae4807546b9c069cf15ecc73e2c408a6e8c7502870f7b45a2e5e0632fc7dec878cad24c1d3a20ff3b812067dd7b07de8 fpm-pool.conf" diff --git a/community/nextcloud/fpm-pool.conf b/community/nextcloud/fpm-pool.conf index 14a25155ad..4e09b57028 100644 --- a/community/nextcloud/fpm-pool.conf +++ b/community/nextcloud/fpm-pool.conf @@ -125,7 +125,10 @@ ping.path = /ping ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from ; the current environment. ; Default Value: clean env -env[PATH] = /usr/bin:/bin +env[PATH] = /usr/local/bin:/usr/bin:/bin +env[TMP] = /tmp +env[TMPDIR] = /tmp +env[TEMP] = /tmp ; Additional php.ini defines, specific to this pool of workers. These settings ; overwrite the values previously defined in the php.ini. The directives are the @@ -158,6 +161,7 @@ php_admin_value[sys_temp_dir] = /var/tmp/nextcloud php_admin_value[upload_tmp_dir] = /var/tmp/nextcloud ; Log errors to specified file. +php_admin_flag[log_errors] = on php_admin_value[error_log] = /var/log/nextcloud/php.error.log ; OPcache error_log file name. Empty string assumes "stderr" diff --git a/community/nextcloud/nextcloud-config.php b/community/nextcloud/nextcloud-config.php index 13de237a34..de572edc28 100644 --- a/community/nextcloud/nextcloud-config.php +++ b/community/nextcloud/nextcloud-config.php @@ -18,5 +18,9 @@ $CONFIG = array ( ), 'updatechecker' => false, 'check_for_working_htaccess' => false, + + // Uncomment to enable Zend OPcache. + //'memcache.local' => '\OC\Memcache\APCu', + 'installed' => false, ); |