瀏覽代碼

custom_apps path in default config

master
父節點
當前提交
3f115941ab
共有 1 個檔案被更改,包括 11 行新增3 行删除
  1. +11
    -3
      templates/config.php.j2

+ 11
- 3
templates/config.php.j2 查看文件

@@ -11,10 +11,18 @@ $CONFIG = array(
'loglevel' => 2,
'logtimezone' => '{{timezone}}',
'appstoreenabled' => true,
'apps_paths' => array(
array(
'path'=> '{{nextcloud_directory}}/apps',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/nextcloud/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/nextcloud/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),


Loading…
取消
儲存