changeset 926:344f74851781 rhodecode-0.0.1.1.1

fixed docs
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 06 Jan 2011 20:12:13 +0100
parents 15e0fb9795da
children f95f9e48c99f
files docs/setup.rst
diffstat 1 files changed, 21 insertions(+), 21 deletions(-) [+]
line wrap: on
line diff
--- a/docs/setup.rst	Thu Jan 06 20:01:44 2011 +0100
+++ b/docs/setup.rst	Thu Jan 06 20:12:13 2011 +0100
@@ -226,27 +226,27 @@
 
 Sample config for apache using proxy::
 
-<VirtualHost *:80>
-        ServerName hg.myserver.com
-        ServerAlias hg.myserver.com
-
-        <Proxy *>
-          Order allow,deny
-          Allow from all
-        </Proxy>
-
-        #important !
-        #Directive to properly generate url (clone url) for pylons
-        ProxyPreserveHost On
-
-        #rhodecode instance
-        ProxyPass / http://127.0.0.1:5000/
-        ProxyPassReverse / http://127.0.0.1:5000/
-        
-        #to enable https use line below
-        #SetEnvIf X-Url-Scheme https HTTPS=1
-        
-</VirtualHost> 
+    <VirtualHost *:80>
+            ServerName hg.myserver.com
+            ServerAlias hg.myserver.com
+    
+            <Proxy *>
+              Order allow,deny
+              Allow from all
+            </Proxy>
+    
+            #important !
+            #Directive to properly generate url (clone url) for pylons
+            ProxyPreserveHost On
+    
+            #rhodecode instance
+            ProxyPass / http://127.0.0.1:5000/
+            ProxyPassReverse / http://127.0.0.1:5000/
+            
+            #to enable https use line below
+            #SetEnvIf X-Url-Scheme https HTTPS=1
+            
+    </VirtualHost> 
 
 
 Additional tutorial