changeset 2650:33252b42d9eb beta

changed /var/www to /opt as example in installation, it's just a better example.
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 21 Jul 2012 14:50:14 +0200
parents f61217731c18
children 957329c1c35b
files docs/installation.rst
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/docs/installation.rst	Sat Jul 21 14:48:35 2012 +0200
+++ b/docs/installation.rst	Sat Jul 21 14:50:14 2012 +0200
@@ -46,7 +46,7 @@
 - Assuming you have installed virtualenv_ create a new virtual environment 
   using virtualenv command:: 
 
-    virtualenv --no-site-packages /var/www/rhodecode-venv
+    virtualenv --no-site-packages /opt/rhodecode-venv
 
 
 .. note:: Using ``--no-site-packages`` when generating your
@@ -59,10 +59,10 @@
    Python's "main" site-packages dir.
 
 
-- this will install new virtualenv_ into `/var/www/rhodecode-venv`. 
+- this will install new virtualenv_ into `/opt/rhodecode-venv`. 
 - Activate the virtualenv_ by running::
 
-    source /var/www/rhodecode-venv/bin/activate
+    source /opt/rhodecode-venv/bin/activate
 
 .. note:: If you're using UNIX, *do not* use ``sudo`` to run the
    ``virtualenv`` script.  It's perfectly acceptable (and desirable)
@@ -71,7 +71,7 @@
 - Make a folder for rhodecode data files, and configuration somewhere on the 
   filesystem. For example::
 
-    mkdir /var/www/rhodecode
+    mkdir /opt/rhodecode
   
     
 - Go into the created directory run this command to install rhodecode::