From 72e7dc29a87f8d84239f870916a63e93595900bb Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 16 Nov 2023 17:13:47 +0100 Subject: [PATCH] fix the path Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index 3e70d40a..7ac5d955 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -513,7 +513,7 @@ elif [ "$(php /var/www/html/occ config:app:get notify_push enabled)" != "yes" ]; elif [ "$SKIP_UPDATE" != 1 ]; then php /var/www/html/occ app:update notify_push fi -chmod 775 -R /nextcloud/custom_apps/notify_push/bin/ +chmod 775 -R /var/www/html/custom_apps/notify_push/bin/ php /var/www/html/occ config:system:set trusted_proxies 0 --value="127.0.0.1" php /var/www/html/occ config:system:set trusted_proxies 1 --value="::1" php /var/www/html/occ config:app:set notify_push base_endpoint --value="https://$NC_DOMAIN/push"