Author: dsahlberg
Date: Sat Jul 8 15:41:53 2023
New Revision: 1910878
URL: http://svn.apache.org/viewvc?rev=1910878&view=rev
Log:
In site/staging:
Follow-up to r1910877.
* faq.html
(#reverseproxy): Fix some invalid html
Modified:
subversion/site/staging/faq.html
Modified: subversion/site/staging/faq.html
URL:
http://svn.apache.org/viewvc/subversion/site/staging/faq.html?rev=1910878&r1=1910877&r2=1910878&view=diff
==============================================================================
--- subversion/site/staging/faq.html (original)
+++ subversion/site/staging/faq.html Sat Jul 8 15:41:53 2023
@@ -989,39 +989,39 @@ The example below can be copied into web
server is running on port 81 on the same computer as IIS.</p>
<pre>
-<system.webServer>
- <rewrite>
- <rules>
- <clear />
- <rule name="ToHttps" stopProcessing="true">
- <match url="(.*)" />
- <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
- <add input="{HTTPS}" pattern="^OFF$" />
- </conditions>
- <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}"/>
- </rule>
- <rule name="ProxyWithDestination" enabled="true" patternSyntax="ECMAScript"
stopProcessing="true">
- <match url="(.*)" />
- <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
- <add input="{HTTP_DESTINATION}" pattern="https://(.*)"/>
- </conditions>
- <serverVariables>
- <set name="HTTP_DESTINATION" value="http://{C:1}" />
- </serverVariables>
- <action type="Rewrite" url="http://127.0.0.1:81/{R:0}"
logRewrittenUrl="true" />
- </rule>
- <rule name="ProxyRest" patternSyntax="ECMAScript" stopProcessing="true">
- <match url="(.*)" negate="false" />
- <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
- <action type="Rewrite" url="http://127.0.0.1:81/{R:0}"
logRewrittenUrl="true" />
- </rule>
- </rules>
- </rewrite>
- <security>
- <requestFiltering allowDoubleEscaping="true" />
- </security>
-</system.webServer></pre>
-</p>
+<system.webServer>
+ <rewrite>
+ <rules>
+ <clear />
+ <rule name="ToHttps" stopProcessing="true">
+ <match url="(.*)" />
+ <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
+ <add input="{HTTPS}" pattern="^OFF$" />
+ </conditions>
+ <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}"/>
+ </rule>
+ <rule name="ProxyWithDestination" enabled="true"
patternSyntax="ECMAScript" stopProcessing="true">
+ <match url="(.*)" />
+ <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
+ <add input="{HTTP_DESTINATION}" pattern="https://(.*)"/>
+ </conditions>
+ <serverVariables>
+ <set name="HTTP_DESTINATION" value="http://{C:1}" />
+ </serverVariables>
+ <action type="Rewrite" url="http://127.0.0.1:81/{R:0}"
logRewrittenUrl="true" />
+ </rule>
+ <rule name="ProxyRest" patternSyntax="ECMAScript"
stopProcessing="true">
+ <match url="(.*)" negate="false" />
+ <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
+ <action type="Rewrite" url="http://127.0.0.1:81/{R:0}"
logRewrittenUrl="true" />
+ </rule>
+ </rules>
+ </rewrite>
+ <security>
+ <requestFiltering allowDoubleEscaping="true" />
+ </security>
+</system.webServer>
+</pre>
</div>