Skip to content

Instantly share code, notes, and snippets.

@jimmy89Li
Created August 11, 2017 09:14
Show Gist options
  • Save jimmy89Li/7f8f99a86879b0398ad833c22924f355 to your computer and use it in GitHub Desktop.
Save jimmy89Li/7f8f99a86879b0398ad833c22924f355 to your computer and use it in GitHub Desktop.
Microsoft Server IIS - Wordpress Upload Limit (Set upload limit to 120M)
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="120000000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment