Skip to content

Commit

Permalink
Merge pull request phpbb#6677 from marc1706/ticket/16907
Browse files Browse the repository at this point in the history
[ticket/16907] Adjust request filtering for phpbb paths
  • Loading branch information
marc1706 committed Jul 14, 2024
2 parents 99c97b9 + 922e769 commit de660fe
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions phpBB/web.config
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,33 @@
</requestFiltering>
</security>
</system.webServer>
<location path="config">
<system.webServer>
<security>
<requestFiltering>
<hiddenSegments>
<add segment="default" />
<add segment="development" />
<add segment="installer" />
<add segment="production" />
<add segment="test" />
<add segment=".htaccess" />
</hiddenSegments>
</requestFiltering>
</security>
</system.webServer>
</location>
<location path="ext">
<system.webServer>
<security>
<requestFiltering>
<hiddenSegments>
<remove segment="phpbb" />
</hiddenSegments>
</requestFiltering>
</security>
</system.webServer>
</location>
<location path="images/avatars">
<system.webServer>
<security>
Expand Down

0 comments on commit de660fe

Please sign in to comment.