Feature Request: Increase Upload Size - Radicale #450

Closed
opened 2026-02-04 18:58:06 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @kiwinh0 on GitHub (Feb 5, 2025).

Have you read and understood the above guidelines?

yes

📜 What is the name of the script you are using?

Radicale

📂 What was the exact command used to execute the script?

bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/radicale.sh)"

📝 Provide a clear and concise description of the issue.

The script installs correctly, but has limitations when uploading the files, being limited to 100kb. Something higher could be set by default since today incorporating photos in contacts is obsolete.

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

No response

🔄 Steps to reproduce the issue.

When entering the webUI, try to upload a file (in this case a 3.5mb .vcf file). Returns a 400 error.

Paste the full error output (if available).

error 400

🖼️ Additional context (optional).

No response

Originally created by @kiwinh0 on GitHub (Feb 5, 2025). ### ✅ Have you read and understood the above guidelines? yes ### 📜 What is the name of the script you are using? Radicale ### 📂 What was the exact command used to execute the script? bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/radicale.sh)" ### 📝 Provide a clear and concise description of the issue. The script installs correctly, but has limitations when uploading the files, being limited to 100kb. Something higher could be set by default since today incorporating photos in contacts is obsolete. ### ⚙️ What settings are you using? - [x] Default Settings - [x] Advanced Settings ### 🖥️ Which Linux distribution are you using? _No response_ ### 🔄 Steps to reproduce the issue. When entering the webUI, try to upload a file (in this case a 3.5mb .vcf file). Returns a 400 error. ### ❌ Paste the full error output (if available). error 400 ### 🖼️ Additional context (optional). _No response_
Author
Owner

@kiwinh0 commented on GitHub (Feb 5, 2025):

The problem is that when using the CLI command line we cannot provide users with the facility of configuring a simple file: /etc/radicale/config

@kiwinh0 commented on GitHub (Feb 5, 2025): The problem is that when using the CLI command line we cannot provide users with the facility of configuring a simple file: /etc/radicale/config
Author
Owner

@tremor021 commented on GitHub (Feb 6, 2025):

The application runs with default config loaded. If you want to do your own configuration (which you probably must do, because you need to set security and permissions), you must create it:

mkdir /etc/radicale
nano /etc/radicale/config

then follow instructions how to setup your own configuration:
https://radicale.org/master.html#basic-configuration

@tremor021 commented on GitHub (Feb 6, 2025): The application runs with default config loaded. If you want to do your own configuration (which you probably must do, because you need to set security and permissions), you must create it: ``` mkdir /etc/radicale nano /etc/radicale/config ``` then follow instructions how to setup your own configuration: https://radicale.org/master.html#basic-configuration
Author
Owner

@tremor021 commented on GitHub (Feb 6, 2025):

Forgive me, i forgot to address the max upload size setting. After you create a config file i mention in #2073 , put this in the server section of the config:

[server]
# 100 Megabyte
max_content_length = 100000000

Adjust accordingly

@tremor021 commented on GitHub (Feb 6, 2025): Forgive me, i forgot to address the max upload size setting. After you create a config file i mention in #2073 , put this in the server section of the config: ``` [server] # 100 Megabyte max_content_length = 100000000 ``` Adjust accordingly
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#450