Last active
February 28, 2024 18:23
-
-
Save niemyjski/a68114db0ddf1f9717f6 to your computer and use it in GitHub Desktop.
IIS6 Exceptionless Web.config file changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Required changes if you are using Exceptionless.Mvc --> | |
<system.web> | |
<httpModules> | |
<add type="Exceptionless.Mvc.ExceptionlessModule, Exceptionless.Mvc" name="ExceptionlessModule"/> | |
</httpModules> | |
</system.web> | |
<!-- Required changes if you are using Exceptionless.Web --> | |
<system.web> | |
<httpModules> | |
<add type="Exceptionless.Web.ExceptionlessModule, Exceptionless.Web" name="ExceptionlessModule"/> | |
</httpModules> | |
</system.web> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment