Skip to content

Commit

Permalink
added setup info for IIS servers (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
panique committed Dec 4, 2016
1 parent 53e6ab0 commit 7473b3e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Chris
- [Quick Installation](#quick-installation)
- [Detailed Installation](#detailed-installation)
- [NGINX setup](#nginx-setup)
- [IIS setup](#iis-setup)
+ [Documentation](#documentation)
- [How to use the user roles](#user_roles)
- [How to use the CSRF feature](#csrf)
Expand Down Expand Up @@ -337,6 +338,33 @@ server {
}
```

#### IIS setup: <a name="iis-setup"></a>

Big thanks to razuro for this fine setup: Put this inside your root folder, but don't put any web.config in your public
folder.

```
<?xml version="1.0" encoding="UTF-8"?><configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="public/index.php?url={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
```

Find the original [ticket here](https://github.com/panique/huge/issues/788).

#### Testing with demo users

By default there are two demo users, a normal user and an admin user. For more info on that please have a look on the
Expand Down

0 comments on commit 7473b3e

Please sign in to comment.