On my project, I will allow users to send zip files and images files (on two different form post).

The project is developed with Play! Framework (not PHP).

I'd like to limit the size of upload for 1Mo if it's images, and 10Mo if it's zip.

Is this possible ?

I saw the directive client_max_body_size that should do what I'm looking for, but I can't find a way to apply this per mimetype.

Thanks for your help :)

link|improve this question

feedback

1 Answer

You can create different locations whith different client_max_body_size (or everything u want) for images, zips and etc.

just use:

location ~* ^.+\.(jpg|jpeg|gif) {

client_max_body_size 1m;
...proxy_pass or whatever
}

location ~* ^.+\.(zip|rar) {
client_max_body_size 10m;
...proxy_pass or whatever

}
link|improve this answer
is location not where the user goes in the website? like site.com/upload ? – cx42net Feb 3 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.