Since indyco Explorer allows for publishing and versioning of potentially big projects you might need to adjust this parameter to your organization needs.


Configuration on IIS

To configure the maximum request in IIS environment you need to change 2 different configurations in the web.config file.

<configuration>
  <!-- [...] -->
  <system.web>
    <!-- http://indyco.com/support/request-length-configuration -->
    <!-- maxRequestLength value in KILOBYTES -->
    <httpRuntime maxRequestLength="30000" executionTimeout="3600" />
  </system.web>
</configuration>

<configuration>
  <!-- [...] -->
  <system.webServer>
    <security>
      <requestFiltering>
        <!-- http://indyco.freshdesk.com/support/articles/1000239715 -->
        <!-- maxAllowedContentLength value in BYTES -->
        <requestLimits maxAllowedContentLength="30000000" />
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

For more information please refer to official documentation 

https://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits


Configuration on Docker

To configure the maximum request length in a docker environment you need to set the following environment variable:

Kestrel__MaxRequestBodySizeBytes = <INSERT MAX VALUE IN BYTES>