Skip to content

Commit 5f97ab7

Browse files
authored
fix(cd): adding reverse proxy rule for iis (#1198)
1 parent 66f03eb commit 5f97ab7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

public/web.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<system.webServer>
44
<rewrite>
55
<rules>
6+
<rule name="Directory to Index" stopProcessing="true">
7+
<match url="(.*[^/])$" />
8+
<conditions>
9+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" />
10+
</conditions>
11+
<action type="Rewrite" url="{R:1}/index.html" />
12+
</rule>
613
<rule name="Web Components Routes" stopProcessing="true">
714
<match url=".*" />
815
<conditions logicalGrouping="MatchAll">

0 commit comments

Comments
 (0)