Git_Ceshi 测试分支创建与合并

web.config.transform 1.5KB

123456789101112131415161718192021222324252627282930313233343536
  1. <configuration>
  2. <configSections>
  3. <sectionGroup name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth.Core">
  4. <section name="messaging" type="DotNetOpenAuth.Configuration.MessagingElement, DotNetOpenAuth.Core" requirePermission="false" allowLocation="true" />
  5. <section name="reporting" type="DotNetOpenAuth.Configuration.ReportingElement, DotNetOpenAuth.Core" requirePermission="false" allowLocation="true" />
  6. </sectionGroup>
  7. </configSections>
  8. <system.net>
  9. <defaultProxy enabled="true" />
  10. <settings>
  11. <!-- This setting causes .NET to check certificate revocation lists (CRL)
  12. before trusting HTTPS certificates. But this setting tends to not
  13. be allowed in shared hosting environments. -->
  14. <!--<servicePointManager checkCertificateRevocationList="true"/>-->
  15. </settings>
  16. </system.net>
  17. <runtime>
  18. <!-- This prevents the Windows Event Log from frequently logging that HMAC1 is being used (when the other party needs it). -->
  19. <legacyHMACWarning enabled="0" />
  20. </runtime>
  21. <dotNetOpenAuth>
  22. <messaging>
  23. <untrustedWebRequest>
  24. <whitelistHosts>
  25. <!-- Uncomment to enable communication with localhost (should generally not activate in production!) -->
  26. <!--<add name="localhost" />-->
  27. </whitelistHosts>
  28. </untrustedWebRequest>
  29. </messaging>
  30. <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. -->
  31. <reporting enabled="true" />
  32. </dotNetOpenAuth>
  33. </configuration>