From f51c8fe3f2e47cb1d7954c45eb7d0af2fb7a8b42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Jul 2023 16:44:08 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-nextcloud.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/images/docker-nextcloud.md b/images/docker-nextcloud.md index 6ab648e012..a10879c7c1 100644 --- a/images/docker-nextcloud.md +++ b/images/docker-nextcloud.md @@ -53,6 +53,17 @@ Nextcloud's built-in collaborative editing packages (Collabora/CODE and OnlyOffi If (auto) installed, those built-in packages may cause instability and should be removed. +### Custom App Directories + +If you are [using custom app directories](https://docs.nextcloud.com/server/latest/admin_manual/apps_management.html#using-custom-app-directories) you will need to make the custom folder(s) you are using available to the web server. The recommended way to do this with our container is to add a volume. Ex: + +```yaml + volumes: + - /path/to/your_custom_apps_folder:/app/www/public/your_custom_apps_folder +``` + +Afterwards, you can set `"path" => OC::$SERVERROOT . "/your_custom_apps_folder",` in your `config.php` file, per the [official documentation](https://docs.nextcloud.com/server/latest/admin_manual/apps_management.html#using-custom-app-directories). + ### Strict reverse proxies This image uses a self-signed certificate by default. This naturally means the scheme is `https`.