diff docs/setup.rst @ 929:c44b3c9b9f7f beta

doc fix
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 06 Jan 2011 21:07:33 +0100
parents 8378122aa408
children 442ccfe939d0
line wrap: on
line diff
--- a/docs/setup.rst	Thu Jan 06 20:28:02 2011 +0100
+++ b/docs/setup.rst	Thu Jan 06 21:07:33 2011 +0100
@@ -256,27 +256,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