mirror of https://github.com/Radarr/Radarr
31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
|
<configuration>
|
||
|
<configSections>
|
||
|
<sectionGroup name="elmah">
|
||
|
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
|
||
|
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
|
||
|
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
|
||
|
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
|
||
|
</sectionGroup>
|
||
|
</configSections>
|
||
|
<system.web>
|
||
|
<httpModules>
|
||
|
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
|
||
|
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
|
||
|
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/>
|
||
|
</httpModules>
|
||
|
<httpHandlers>
|
||
|
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
|
||
|
</httpHandlers>
|
||
|
</system.web>
|
||
|
<system.webServer>
|
||
|
<validation validateIntegratedModeConfiguration="false" />
|
||
|
<modules>
|
||
|
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
|
||
|
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
|
||
|
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
|
||
|
</modules>
|
||
|
<handlers>
|
||
|
<add name="Elmah" path="elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
|
||
|
</handlers>
|
||
|
</system.webServer>
|
||
|
</configuration>
|