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>
+&lt;system.webServer&gt;
+ &lt;rewrite&gt;
+  &lt;rules&gt;
+   &lt;clear /&gt;
+   &lt;rule name="ToHttps" stopProcessing="true"&gt;
+    &lt;match url="(.*)" /&gt;
+    &lt;conditions logicalGrouping="MatchAll" trackAllCaptures="false"&gt;
+     &lt;add input="{HTTPS}" pattern="^OFF$" /&gt;
+    &lt;/conditions&gt;
+    &lt;action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}"/&gt;
+   &lt;/rule&gt;
+   &lt;rule name="ProxyWithDestination" enabled="true" 
patternSyntax="ECMAScript" stopProcessing="true"&gt;
+    &lt;match url="(.*)" /&gt;
+    &lt;conditions logicalGrouping="MatchAll" trackAllCaptures="false"&gt;
+     &lt;add input="{HTTP_DESTINATION}" pattern="https://(.*)"/&gt;
+    &lt;/conditions&gt;
+    &lt;serverVariables&gt;
+     &lt;set name="HTTP_DESTINATION" value="http://{C:1}"; /&gt;
+    &lt;/serverVariables&gt;
+    &lt;action type="Rewrite" url="http://127.0.0.1:81/{R:0}"; 
logRewrittenUrl="true" /&gt;
+   &lt;/rule&gt;
+   &lt;rule name="ProxyRest" patternSyntax="ECMAScript" 
stopProcessing="true"&gt;
+    &lt;match url="(.*)" negate="false" /&gt;
+    &lt;conditions logicalGrouping="MatchAll" trackAllCaptures="false" /&gt;
+    &lt;action type="Rewrite" url="http://127.0.0.1:81/{R:0}"; 
logRewrittenUrl="true" /&gt;
+   &lt;/rule&gt;
+  &lt;/rules&gt;
+ &lt;/rewrite&gt;
+ &lt;security&gt;
+  &lt;requestFiltering allowDoubleEscaping="true" /&gt;
+ &lt;/security&gt;
+&lt;/system.webServer&gt;
+</pre>
 
 </div>
 


Reply via email to