mirror of https://github.com/flarum/flarum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.5 KiB
30 lines
1.5 KiB
4 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<configuration>
|
||
|
<system.webServer>
|
||
|
<defaultDocument>
|
||
|
<files>
|
||
|
<clear />
|
||
|
<add value="Index.php" />
|
||
|
</files>
|
||
|
</defaultDocument>
|
||
|
<rewrite>
|
||
|
<rules>
|
||
|
<!-- Changed `enabled=` to true in the rule below if you are not using the `public` directory to
|
||
|
prevent sensitve resources from being exposed -->
|
||
|
<rule name="Disallow sensitive directories" enabled="false" stopProcessing="true">
|
||
|
<match url="^/(\.git|composer\.(json|lock)|auth\.json|config\.php|flarum|storage|vendor)" ignoreCase="false" />
|
||
|
<action type="CustomResponse" url="/" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
|
||
|
</rule>
|
||
|
<rule name="Handle index.php re-write" stopProcessing="true">
|
||
|
<match url="^" ignoreCase="false" />
|
||
|
<conditions logicalGrouping="MatchAll">
|
||
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
|
||
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
||
|
</conditions>
|
||
|
<action type="Rewrite" url="index.php" appendQueryString="true" />
|
||
|
</rule>
|
||
|
</rules>
|
||
|
</rewrite>
|
||
|
</system.webServer>
|
||
|
</configuration>
|