Skip to content

Commit 8dd98cd

Browse files
committed
Fix RequestHeader syntax
1 parent 8683b62 commit 8dd98cd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/faq.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ <h3 id="_how_can_i_deploy_springdoc_openapi_ui_behind_a_reverse_proxy"><a class=
550550
</div>
551551
<div class="listingblock">
552552
<div class="content">
553-
<pre>RequestHeader=set X-Forwarded-Prefix "/custom-path"</pre>
553+
<pre>RequestHeader set X-Forwarded-Prefix "/custom-path"</pre>
554554
</div>
555555
</div>
556556
<div class="ulist">

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2970,7 +2970,7 @@ <h3 id="how-can-i-deploy-springdoc-openapi-ui-behind-a-reverse-proxy"><a class="
29702970
</div>
29712971
<div class="listingblock">
29722972
<div class="content">
2973-
<pre>RequestHeader=set X-Forwarded-Prefix "/custom-path"</pre>
2973+
<pre>RequestHeader set X-Forwarded-Prefix "/custom-path"</pre>
29742974
</div>
29752975
</div>
29762976
<div class="ulist">

docs/v2/faq.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ <h3 id="_how_can_i_deploy_springdoc_openapi_starter_webmvc_ui_behind_a_reverse_p
541541
</div>
542542
<div class="listingblock">
543543
<div class="content">
544-
<pre>RequestHeader=set X-Forwarded-Prefix "/custom-path"</pre>
544+
<pre>RequestHeader set X-Forwarded-Prefix "/custom-path"</pre>
545545
</div>
546546
</div>
547547
<div class="ulist">

docs/v2/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3018,7 +3018,7 @@ <h3 id="how-can-i-deploy-springdoc-openapi-starter-webmvc-ui-behind-a-reverse-pr
30183018
</div>
30193019
<div class="listingblock">
30203020
<div class="content">
3021-
<pre>RequestHeader=set X-Forwarded-Prefix "/custom-path"</pre>
3021+
<pre>RequestHeader set X-Forwarded-Prefix "/custom-path"</pre>
30223022
</div>
30233023
</div>
30243024
<div class="ulist">

src/docs/asciidoc/faq.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public String toString() {
258258
* For example, using Apache 2, configuration:
259259
[source,properties]
260260
----
261-
RequestHeader=set X-Forwarded-Prefix "/custom-path"
261+
RequestHeader set X-Forwarded-Prefix "/custom-path"
262262
----
263263
* Then, in your Spring Boot application make sure your application handles this header: `X-Forwarded-For`. There are two ways to achieve this:
264264
[source,properties]

src/docs/asciidoc/v2/faq.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public String toString() {
249249
* For example, using Apache 2, configuration:
250250
[source,properties]
251251
----
252-
RequestHeader=set X-Forwarded-Prefix "/custom-path"
252+
RequestHeader set X-Forwarded-Prefix "/custom-path"
253253
----
254254
* Then, in your Spring Boot application make sure your application handles this header: `X-Forwarded-For`. There are two ways to achieve this:
255255
[source,properties]

0 commit comments

Comments
 (0)