Uploading Media
I found this from searching - "Upload your logo image (note there's a 1MB file size limit)"
I can find anything in the documentation that talks about anything relating to uploading media. Just hoping to get some info on what file types is looking for and if there's any size limitation?

11 Replies
Thank you for submitting a support request.
Depending on the volume of requests, our team should get in contact with you shortly.
⚠️ Please include the following details in your post or we may reject your request without further comment: - Log (See https://homarr.dev/docs/community/faq#how-do-i-open-the-console--log) - Operating system (Unraid, TrueNAS, Ubuntu, ...) - Exact Homarr version (eg. 0.15.0, not latest) - Configuration (eg. docker-compose, screenshot or similar. Use ``your-text`` to format) - Other relevant information (eg. your devices, your browser, ...)
Frequently Asked Questions | Homarr documentation
Can I install Homarr on a Raspberry Pi?
Hey, we currently support the file types
["image/png", "image/jpeg", "image/webp", "image/gif", "image/svg+xml"]
And the max upload size should be 32MB
i am getting anything under 1mb fail - using a .png file
Interesting, do you have anything in the logs?
this does not upload

or anything over 1mb
Oh I see, the nginx proxy limits it to 1mb:
https://stackoverflow.com/a/23764479
So we'll need to increase the limit in our nginx configuration as well
Stack Overflow
How to avoid Request Entity Too Large 413 error
How to avoid this 413 error ?
Request Entity Too Large
The requested resource /serverpath/reports.php does not allow request data with POST requests, or the amount of data provided in the re...
The requested resource /serverpath/reports.php does not allow request data with POST requests, or the amount of data provided in the re...
NGINX within homarr?
Yes exactly
We have a websocket & webserver running that are proxied from port 7575
I've created an issue for it on GitHub:
https://github.com/homarr-labs/homarr/issues/2812
I think somebody will make a quick fix for it until the next release on friday.
For now I suggest you change the size of the image to 512x512
GitHub
bug: uploads bigger than 1mb fail · Issue #2812 · homarr-labs/homarr
Describe the bug Users are unable to upload medias bigger than 1mb. The reason is the default limit of nginx for max body size: https://stackoverflow.com/a/23764479 Steps to reproduce Upload a file...
thanks mate