We can change the maximum upload size for a site by pasting the below code to web.config file.
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="629145600"/>
</requestFiltering>
</security>
</system.webServer>
maxAllowedContentLength is in bytes not kilobytes.

