Guest User

Untitled

a guest
Dec 11th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <system.web>
  2. <authentication mode="None" />
  3. <compilation debug="true" targetFramework="4.5.2" />
  4. <httpRuntime targetFramework="4.5.2" />
  5. <httpModules>
  6. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
  7. </httpModules>
  8. </system.web>
  9.  
  10. <system.webServer>
  11.  
  12. <modules>
  13. <remove name="FormsAuthentication" />
  14. <remove name="TelemetryCorrelationHttpModule" />
  15. <add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation" preCondition="integratedMode,managedHandler" />
  16. <remove name="ApplicationInsightsWebTracking" />
  17. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
  18. </modules>
  19. <handlers>
  20. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  21. <remove name="OPTIONSVerbHandler" />
  22. <remove name="TRACEVerbHandler" />
  23. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  24. </handlers>
  25. <validation validateIntegratedModeConfiguration="false" />
  26. </system.webServer>
Add Comment
Please, Sign In to add comment