Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save asd1245dss/0c71521c1a248c72ccd16ab3b7d3793a to your computer and use it in GitHub Desktop.
Save asd1245dss/0c71521c1a248c72ccd16ab3b7d3793a to your computer and use it in GitHub Desktop.
avoid tomcat upload size limitation
Modified /usr/share/tomcat7-admin/manager/WEB-INF/web.xml to handle larger uploads.
<multipart-config>
<max-file-size>72428800</max-file-size>
<max-request-size>72428800</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment