Skip to content

Commit

Permalink
Added example for IIS classic pipeline mode
Browse files Browse the repository at this point in the history
  • Loading branch information
mroach committed Oct 7, 2013
1 parent 15d5e2e commit 44afff0
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,25 @@ protected void Application_Error(object sender, EventArgs e)

### As an HttpModule in the Web.config

#### IIS Integrated Pipeline

```xml
<system.webServer>
<modules>
<add name="RollbarHttpModule" type="RollbarSharp.RollbarHttpModule"/>
</modules>
</system.webServer>
<system.webServer>
<modules>
<add name="RollbarHttpModule" type="RollbarSharp.RollbarHttpModule"/>
</modules>
</system.webServer>
```

#### IIS Classic Pipeline

```xml
<system.web>
<httpModules>
<add name="RollbarHttpModule" type="RollbarSharp.RollbarHttpModule"/>
</httpModules>
</system.web>
```

## Bugs

Expand Down

0 comments on commit 44afff0

Please sign in to comment.