##// END OF EJS Templates
compare: using f_path shouldn't generate full range of commits....
compare: using f_path shouldn't generate full range of commits. - in case of comparing just 1 file the range of commits is not relevant. This in addition speeds rendering the compare page by a LOT.

File last commit:

r1121:754e16c0 default
r1262:fa7f32fd default
Show More
apache-subdirectory.rst
34 lines | 962 B | text/x-rst | RstLexer
/ docs / admin / apache-subdirectory.rst
project: added all source files and assets
r1 .. _apache-sub-ref:
Apache URL Prefix Configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the following example to configure Apache to use a URL prefix.
.. code-block:: apache
docs: fix apache as subdirectory instructions....
r1121 <Location /<someprefix>/ # Change <someprefix> into your chosen prefix
ProxyPreserveHost On
ProxyPass "http://127.0.0.1:5000/"
ProxyPassReverse "http://127.0.0.1:5000/"
Header set X-Url-Scheme https env=HTTPS
project: added all source files and assets
r1 </Location>
In addition to the regular Apache setup you will need to add the following
lines into the ``rhodecode.ini`` file.
docs: updated docs on proxy prefix for nginx and apache
r634 * Above ``[app:main]`` section of the ``rhodecode.ini`` file add the
following section if it doesn't exist yet.
.. code-block:: ini
[filter:proxy-prefix]
use = egg:PasteDeploy#prefix
prefix = /<someprefix> # Change <someprefix> into your chosen prefix
project: added all source files and assets
r1 * In the the ``[app:main]`` section of your ``rhodecode.ini`` file add the
following line.
.. code-block:: ini
filter-with = proxy-prefix