Merge pull request #5613 from nextcloud/enh/5611/increase-default-limit

change default upload limit to 16G as recommended in the docs
This commit is contained in:
Simon L. 2024-11-25 10:30:17 +01:00 committed by GitHub
commit a89765b641
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 15 additions and 15 deletions

View file

@ -669,7 +669,7 @@ class ConfigurationManager
public function GetNextcloudUploadLimit() : string {
$envVariableName = 'NEXTCLOUD_UPLOAD_LIMIT';
$configName = 'nextcloud_upload_limit';
$defaultValue = '10G';
$defaultValue = '16G';
return $this->GetEnvironmentalVariableOrConfig($envVariableName, $configName, $defaultValue);
}