diff options
author | nodiscc <nodiscc@gmail.com> | 2018-07-08 19:54:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 19:54:48 +0200 |
commit | 5045585f24543efd1ac507e37a854219b1328a9a (patch) | |
tree | 1ffe761398096d6eb1ff55b42544fecf105f6c0c | |
parent | e7f4a03d24470ecf329d31375bceab2ad98f1a0d (diff) | |
download | Shaarli-5045585f24543efd1ac507e37a854219b1328a9a.tar.gz Shaarli-5045585f24543efd1ac507e37a854219b1328a9a.tar.zst Shaarli-5045585f24543efd1ac507e37a854219b1328a9a.zip |
doc: reverse proxy config: proxypreservehost: wording, link to apache documentation, typo
-rw-r--r-- | doc/md/docker/reverse-proxy-configuration.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/md/docker/reverse-proxy-configuration.md b/doc/md/docker/reverse-proxy-configuration.md index d44aa39f..e53c9422 100644 --- a/doc/md/docker/reverse-proxy-configuration.md +++ b/doc/md/docker/reverse-proxy-configuration.md | |||
@@ -13,13 +13,13 @@ This guide assumes that: | |||
13 | - [mod_proxy](https://httpd.apache.org/docs/2.4/mod/mod_proxy.html) | 13 | - [mod_proxy](https://httpd.apache.org/docs/2.4/mod/mod_proxy.html) |
14 | - [Reverse Proxy Request Headers](https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#x-headers) | 14 | - [Reverse Proxy Request Headers](https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#x-headers) |
15 | 15 | ||
16 | The following HTTP headers are set by using the `ProxyPass` directive: | 16 | The following HTTP headers are set when the `ProxyPass` directive is set: |
17 | 17 | ||
18 | - `X-Forwarded-For` | 18 | - `X-Forwarded-For` |
19 | - `X-Forwarded-Host` | 19 | - `X-Forwarded-Host` |
20 | - `X-Forwarded-Server` | 20 | - `X-Forwarded-Server` |
21 | 21 | ||
22 | The original `SERVER_NAME` can be send to the proxied host using the `ProxyPreserveHost` directive. | 22 | The original `SERVER_NAME` can be sent to the proxied host by setting the [`ProxyPreserveHost`](https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#ProxyPreserveHost) directive to `On`. |
23 | 23 | ||
24 | ```apache | 24 | ```apache |
25 | <VirtualHost *:80> | 25 | <VirtualHost *:80> |