Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 02. Prerequisites.md: New section "Running Piranha under IIS" #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/01. Basics/02. Prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,18 @@ We recommend you to install our project templates which will help you get starte
dotnet new -i Piranha.Templates
~~~

You can read more about the different project templates we provide [here](project-templates).
You can read more about the different project templates we provide [here](project-templates).

## Running Piranha under IIS

When running Piranha under IIS, take care that the `WebDAVModule` is disabled. Some hosting providers have it enabled by default. If enabled, you may experience problems with API calls in the `Manager`, because e.g. `PUT` and `DELETE`request interfere with the `WebDAVModule`. You can switch it off with the following entries in `web.config`:
```Xml
<system.webServer>
<modules>
<remove name="WebDAVModule" />
</modules>
<handlers>
<remove name="WebDAV" />
</handlers>
</system.webServer>
```