##// END OF EJS Templates
docs: fix apache as subdirectory instructions....
marcink -
r1121:754e16c0 default
parent child Browse files
Show More
@@ -91,7 +91,7 b' asyncore_use_poll = true'
91 91 #timeout = 21600
92 92
93 93
94 ## prefix middleware for RhodeCode, disables force_https flag.
94 ## prefix middleware for RhodeCode.
95 95 ## recommended when using proxy setup.
96 96 ## allows to set RhodeCode under a prefix in server.
97 97 ## eg https://server.com/<prefix>. Enable `filter-with =` option below as well.
@@ -91,7 +91,7 b' max_requests_jitter = 30'
91 91 timeout = 21600
92 92
93 93
94 ## prefix middleware for RhodeCode, disables force_https flag.
94 ## prefix middleware for RhodeCode.
95 95 ## recommended when using proxy setup.
96 96 ## allows to set RhodeCode under a prefix in server.
97 97 ## eg https://server.com/custom_prefix. Enable `filter-with =` option below as well.
@@ -7,10 +7,11 b' Use the following example to configure A'
7 7
8 8 .. code-block:: apache
9 9
10 <Location /<someprefix> > # Change <someprefix> into your chosen prefix
11 ProxyPass http://127.0.0.1:5000/<someprefix>
12 ProxyPassReverse http://127.0.0.1:5000/<someprefix>
13 SetEnvIf X-Url-Scheme https HTTPS=1
10 <Location /<someprefix>/ # Change <someprefix> into your chosen prefix
11 ProxyPreserveHost On
12 ProxyPass "http://127.0.0.1:5000/"
13 ProxyPassReverse "http://127.0.0.1:5000/"
14 Header set X-Url-Scheme https env=HTTPS
14 15 </Location>
15 16
16 17 In addition to the regular Apache setup you will need to add the following
@@ -150,7 +150,7 b' asyncore_use_poll = true'
150 150 ## how many workers should be spawned at a time
151 151 #cheaper-step = 1
152 152
153 ## prefix middleware for RhodeCode, disables force_https flag.
153 ## prefix middleware for RhodeCode.
154 154 ## recommended when using proxy setup.
155 155 ## allows to set RhodeCode under a prefix in server.
156 156 ## eg https://server.com/<prefix>. Enable `filter-with =` option below as well.
General Comments 0
You need to be logged in to leave comments. Login now