web.config2 818 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <defaultDocument>
  5. <files>
  6. <add value="intimamedia.html" />
  7. </files>
  8. </defaultDocument>
  9. <httpErrors>
  10. <remove statusCode="403" subStatusCode="-1" />
  11. </httpErrors>
  12. <handlers>
  13. <remove name="PHP_ViaFastCGI" />
  14. </handlers>
  15. </system.webServer>
  16. <system.web>
  17. <authentication mode="Forms" />
  18. <compilation debug="true" />
  19. <sessionState mode="SQLServer" />
  20. </system.web>
  21. <system.net>
  22. <mailSettings>
  23. <smtp from="support@iimt.fr">
  24. <network host="localhost" />
  25. </smtp>
  26. </mailSettings>
  27. </system.net>
  28. </configuration>