0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-16 00:04:48 +02:00

Added 12.0 for fpm

Changed opcache options to versions recommendations.
This commit is contained in:
Marvin Steadfast 2017-06-02 10:47:55 +02:00
parent fae8b66621
commit 24fc46c359
3 changed files with 138 additions and 0 deletions

15
12.0/fpm/apps.config.php Normal file
View file

@ -0,0 +1,15 @@
<?php
$CONFIG = array (
"apps_paths" => array (
0 => array (
"path" => OC::$SERVERROOT."/apps",
"url" => "/apps",
"writable" => false,
),
1 => array (
"path" => OC::$SERVERROOT."/custom_apps",
"url" => "/custom_apps",
"writable" => true,
),
),
);