##// END OF EJS Templates
packaging: Update rc-testdata...
packaging: Update rc-testdata I've seen upcoming trouble with recent nixpkgs and updated the default.nix inside of rc-testdata. This change makes use of the new version for enterprise.

File last commit:

r522:3662eb25 default
r940:1fece5a0 default
Show More
apache-reverse-proxy.rst
33 lines | 928 B | text/x-rst | RstLexer
/ docs / admin / apache-reverse-proxy.rst
project: added all source files and assets
r1 Apache Reverse Proxy
^^^^^^^^^^^^^^^^^^^^
Here is a sample configuration file for using Apache as a reverse proxy.
.. code-block:: apache
<VirtualHost *:80>
ServerName hg.myserver.com
ServerAlias hg.myserver.com
dan
config: update ini/config files to account for /_static path
r456 ## uncomment to serve static files by Apache
static: change static path to serve rhodecode static assets from...
r522 ## ProxyPass /_static/rhodecode !
## Alias /_static/rhodecode /path/to/.rccontrol/enterprise-1/static
project: added all source files and assets
r1
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
docs: updated apache/nginx configs
r120 ## Important !
## Directive to properly generate url (clone url) for pylons
project: added all source files and assets
r1 ProxyPreserveHost On
docs: updated apache/nginx configs
r120 ## RhodeCode instance running
ProxyPass / http://127.0.0.1:10002/
ProxyPassReverse / http://127.0.0.1:10002/
project: added all source files and assets
r1
docs: updated apache/nginx configs
r120 ## to enable https use line below
project: added all source files and assets
r1 #SetEnvIf X-Url-Scheme https HTTPS=1
</VirtualHost>