##// END OF EJS Templates
rcextensions: new builtin rcextensions....
rcextensions: new builtin rcextensions. - ability to expose output to users from rcextensions - new docs - linking to the code makes the tests always check the integrity of rcextensions - added new hook variables and described them to end users

File last commit:

r1263:dd531307 default
r3133:6afdd8e7 default
Show More
apache-subdirectory.rst
35 lines | 963 B | text/x-rst | RstLexer
/ docs / admin / apache-subdirectory.rst

Apache URL Prefix Configuration

Use the following example to configure Apache to use a URL prefix.

# Change someprefix into your chosen prefix
<Location /someprefix >
  ProxyPreserveHost On
  ProxyPass "http://127.0.0.1:5000/"
  ProxyPassReverse "http://127.0.0.1:5000/"
  Header set X-Url-Scheme https env=HTTPS
</Location>

In addition to the regular Apache setup you will need to add the following lines into the rhodecode.ini file.

  • Above [app:main] section of the rhodecode.ini file add the following section if it doesn't exist yet.
[filter:proxy-prefix]
use = egg:PasteDeploy#prefix
prefix = /<someprefix> # Change <someprefix> into your chosen prefix
  • In the the [app:main] section of your rhodecode.ini file add the following line.
filter-with = proxy-prefix