关于 IIS Express 常用设置
2019-05-01
站点绑定
system.applicationHost/sites/site[name=xxxx]/bindings<binding protocol="http" bindingInformation="*:12345:*" />netsh http add urlacl url=http://*:12345:* user=everyonenetsh http delete urlacl url=http://*:12345/请求内容长度限制
system.webServer/security/requestFiltering<requestLimits maxAllowedContentLength="524288000" /> <system.web>
<httpRuntime maxRequestLength="524288000" />
</system.web>Last updated