I have downloaded the community edition with included tomcat server. I found this blogpost but when i upload a file larger than 5MB the complete button is deactivated and in the browser console it says
Error: Maximum file size of 5.00 MB exceeded.
   transformFiles http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:1
   submit http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:1
   link http://localhost:8080/camunda/app/tasklist/scripts/camunda-tasklist-ui.js?bust=7.17.0:41
   complete http://localhost:8080/camunda/app/tasklist/scripts/camunda-tasklist-ui.js?bust=7.17.0:41
   fn http://localhost:8080/camunda/lib/deps.js?bust=7.17.0 line 36 > Function:4
   i http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:36
   $eval http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:36
   $apply http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:36
   compile http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:36
   dispatch http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:120
   handle http://localhost:8080/camunda/lib/deps.js?bust=7.17.0:120
In the config xml file in a comment it says 50MB are the default setting.
    <multipart-config>
      <!-- 50MB max -->
      <max-file-size>52428800</max-file-size>
      <max-request-size>52428800</max-request-size>
      <file-size-threshold>0</file-size-threshold>
    </multipart-config>
But i cant even upload 6MB so how can i increase the max file size? Thank you

