aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-01-24 10:16:32 +0100
committerMilo Casagrande <milo@ubuntu.com>2013-01-24 10:16:32 +0100
commite8d9d98b010f14eb2a9bf20b501cb724abec661c (patch)
tree32e3cc9d25f1d17d42b0c9c6e4ded084668b6cad /INSTALL
parent7dc871d5dd7d91f18cf69f53e1e97991d81d23f9 (diff)
Some work on the install instructions.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL16
1 files changed, 11 insertions, 5 deletions
diff --git a/INSTALL b/INSTALL
index 39bc1da..c2cbadf 100644
--- a/INSTALL
+++ b/INSTALL
@@ -123,15 +123,15 @@ and vhost. Commands have to be run as root.
* Add a new user called 'rhodecode' to RabbitMQ, set up its own password:
- rabbitmqctl add_user rhodecode $PASSWORD
+ sudo rabbitmqctl add_user rhodecode $PASSWORD
* Create a new RabbitMQ vhost called 'rhodecode-vhost':
- rabbitmqctl add_vhost rhodecode-vhost
+ sudo rabbitmqctl add_vhost rhodecode-vhost
* Set the correct permission to the new user for the created vhost:
- rabbitmqctl set_permissions -p rhodecode-vhost rhodecode ".*" ".*" ".*"
+ sudo rabbitmqctl set_permissions -p rhodecode-vhost rhodecode ".*" ".*" ".*"
Once RabbitMQ has been configured, modify the file 'config/production.ini' with
the correct values. The lines to modify are:
@@ -156,8 +156,8 @@ RhodeCode instance.
Copy the file 'config/production.ini' into the home directory of the 'rhodecode'
user and sets its permissions accordingly:
- cp config/production.ini /home/rhodecode/production.ini
- chown rhodecode:rhodecode /home/rhodecode/production.ini
+ sudo cp config/production.ini /home/rhodecode/production.ini
+ sudo chown rhodecode:rhodecode /home/rhodecode/production.ini
Download, Setup and Install RhodeCode
-------------------------------------
@@ -254,3 +254,9 @@ To enable LDAP:
* LDAP configuration has to be done in there. For more info see:
http://packages.python.org/RhodeCode/setup.html#setting-up-ldap-support
+
+Configuration
+=============
+
+All RhodeCode configuration, like creating groups and modifying some of its
+setting, happens from the web interface when logged in as the admin user.