-
Notifications
You must be signed in to change notification settings - Fork 99
Description
Can someone help me with the correct Planka configuration? I haven't been able to set up Planka to work through IIS with a reverse proxy. The IIS setup seems fine because I use it with other packages, and it works well, even with SSL.
With the current configuration, the page doesn't load properly and keeps reading.
<rule name="ReverseProxyInboundRule33" enabled="true" stopProcessing="true"> <match url="(.*)" /> <action type="Rewrite" url="http://192.168.77.100:1337/{R:1}" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="planka.hostingdomain.com" /> <add input="{SERVER_PORT}" pattern="80" /> </conditions> </rule> <rule name="ReverseProxyInboundRule34" stopProcessing="true"> <match url="(.*)" /> <action type="Rewrite" url="http://192.168.77.100:1337/{R:1}" /> <conditions> <add input="{HTTP_HOST}" pattern="planka.hostingdomain.com" /> <add input="{SERVER_PORT}" pattern="443" /> </conditions> </rule>