From 99e56fe1b44b519000e245756149016feda74a71 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Tue, 6 Jan 2026 21:51:19 -0300 Subject: [PATCH] nextcloud: register custom apps path --- services/nextcloud/configmap.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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'),