1

I was not able to find anywhere information about Jenkins' File Parameter limit size. Empirically, we had problems with 100MB files. Does anyone knows what's the limitation, and where it's possible to change it?

1 Answers1

1

You should be able to edit the jenkins web.xml file to increase upload limit with

<max-file-size>500000000</max-file-size>

the value is in Bytes

see this example HttpRequest maximum allowable size in tomcat?

fredericrous
  • 2,833
  • 1
  • 25
  • 26