diff options
Diffstat (limited to 'docs/content/doc/usage/reverse-proxies.zh-cn.md')
-rw-r--r-- | docs/content/doc/usage/reverse-proxies.zh-cn.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/doc/usage/reverse-proxies.zh-cn.md b/docs/content/doc/usage/reverse-proxies.zh-cn.md index 189a18281c..f52adccbbe 100644 --- a/docs/content/doc/usage/reverse-proxies.zh-cn.md +++ b/docs/content/doc/usage/reverse-proxies.zh-cn.md @@ -72,11 +72,11 @@ server { <Proxy *> Order allow,deny Allow from all - AllowEncodedSlashes NoDecode </Proxy> - - ProxyPass /git http://localhost:3000 nocanon # Note: no trailing slash after either /git or port - ProxyPassReverse /git http://localhost:3000 # Note: no trailing slash after either /git or port + AllowEncodedSlashes NoDecode + # Note: no trailing slash after either /git or port + ProxyPass /git http://localhost:3000 nocanon + ProxyPassReverse /git http://localhost:3000 </VirtualHost> ``` |