##// END OF EJS Templates
nix: Add backwardsCompatibleFetchgit...
nix: Add backwardsCompatibleFetchgit Needed so that we can use fetchgit with the branch nixos-16.03 as well as current nixpkgs-unstable. It restores the behavior of nixos-16.03 which is technically wrong since it removes all .git files. Practically this issue has no big impact, so that we can keep it easily a few months this way until we don't depend on building against nixos-16.03 anymore.

File last commit:

r634:fc067e08 default
r716:4af5d93c default
Show More
apache-subdirectory.rst
33 lines | 952 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.

<Location /<someprefix> > # Change <someprefix> into your chosen prefix
  ProxyPass http://127.0.0.1:5000/<someprefix>
  ProxyPassReverse http://127.0.0.1:5000/<someprefix>
  SetEnvIf X-Url-Scheme https HTTPS=1
</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