diff --git a/services/nextcloud/configmap.yaml b/services/nextcloud/configmap.yaml index a6e917c..febcac8 100644 --- a/services/nextcloud/configmap.yaml +++ b/services/nextcloud/configmap.yaml @@ -25,6 +25,21 @@ data: 'mail_smtpauthtype' => 'LOGIN', 'mail_domain' => 'bstein.dev', 'mail_from_address' => 'no-reply', + 'apps_paths' => + array ( + 0 => + array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), + ), 'oidc_login_provider_url' => 'https://sso.bstein.dev/realms/atlas', 'oidc_login_client_id' => getenv('OIDC_CLIENT_ID'), 'oidc_login_client_secret' => getenv('OIDC_CLIENT_SECRET'),