changeset 1226:f17fdbe86ab9 beta

update docs for setup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 07 Apr 2011 22:59:43 +0200
parents 357b0c18f844
children 146b7309e84a
files docs/setup.rst
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/docs/setup.rst	Thu Apr 07 22:51:43 2011 +0200
+++ b/docs/setup.rst	Thu Apr 07 22:59:43 2011 +0200
@@ -454,12 +454,11 @@
 Apache as subdirectory
 ----------------------
 
-
 Apache subdirectory part::
 
-    <Location /rhodecode>
-      ProxyPass http://127.0.0.1:59542/rhodecode
-      ProxyPassReverse http://127.0.0.1:59542/rhodecode
+    <Location /<someprefix> >
+      ProxyPass http://127.0.0.1:5000/<someprefix>
+      ProxyPassReverse http://127.0.0.1:5000/<someprefix>
       SetEnvIf X-Url-Scheme https HTTPS=1
     </Location> 
 
@@ -474,6 +473,8 @@
     prefix = /<someprefix> 
 
 
+then change <someprefix> into your choosen prefix
+
 Apache's example FCGI config
 ----------------------------