From 3f3811bd3e3e53a2041ef7ae1d5606d03d33371a Mon Sep 17 00:00:00 2001 From: Simon L Date: Wed, 21 Jun 2023 20:03:05 +0200 Subject: [PATCH] small improvement to files_antivirus settings 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 700cce2c..003ae2c6 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -648,7 +648,7 @@ if [ "$CLAMAV_ENABLED" = 'yes' ]; then php /var/www/html/occ config:app:set files_antivirus av_port --value="3310" php /var/www/html/occ config:app:set files_antivirus av_host --value="$CLAMAV_HOST" php /var/www/html/occ config:app:set files_antivirus av_stream_max_length --value="104857600" - php /var/www/html/occ config:app:set files_antivirus av_max_file_size --value="-1" + php /var/www/html/occ config:app:set files_antivirus av_max_file_size --value="104857600" php /var/www/html/occ config:app:set files_antivirus av_infected_action --value="only_log" fi else