Guest User

Untitled

a guest
Jan 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <system.webServer>
  2. <modules runAllManagedModulesForAllRequests="true">
  3. <add name="UrlRoutingModule"
  4. type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  5. </modules>
  6. <validation validateIntegratedModeConfiguration="true" />
  7. <handlers>
  8. <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" />
  9. </handlers>
  10. </system.webServer>
  11. <system.serviceModel>
  12. <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  13. <standardEndpoints>
  14. <webHttpEndpoint>
  15. <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" />
  16. </webHttpEndpoint>
  17. </standardEndpoints>
  18. </system.serviceModel>
  19.  
  20. <handlers>
  21. <remove name="WebDAV" />
  22. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
  23. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
  24. <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE"
  25. modules="IsapiModule" scriptProcessor="c:WindowsMicrosoft.NETFrameworkv4.0.30319aspnet_isapi.dll"
  26. resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv4.0,bitness32"
  27. responseBufferLimit="0" />
  28. <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE"
  29. modules="IsapiModule" scriptProcessor="c:WindowsMicrosoft.NETFramework64v4.0.30319aspnet_isapi.dll"
  30. resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv4.0,bitness64"
  31. responseBufferLimit="0" />
  32. </handlers>
Add Comment
Please, Sign In to add comment