WebClient: remove the default upload size limit

Users who want a limit can still set it.
By default, we want to allow uploads of any size

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino
2023-03-02 18:26:21 +01:00
parent ae90ed2ba0
commit bdcee06665
4 changed files with 4 additions and 3 deletions

View File

@@ -386,7 +386,7 @@ func Init() {
CARevocationLists: nil,
SigningPassphrase: "",
TokenValidation: 0,
MaxUploadFileSize: 1048576000,
MaxUploadFileSize: 0,
Cors: httpd.CorsConfig{
Enabled: false,
AllowedOrigins: []string{},