summaryrefslogtreecommitdiff
path: root/www/py-graphite-web/files/pkg-message.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/py-graphite-web/files/pkg-message.in')
-rw-r--r--www/py-graphite-web/files/pkg-message.in38
1 files changed, 21 insertions, 17 deletions
diff --git a/www/py-graphite-web/files/pkg-message.in b/www/py-graphite-web/files/pkg-message.in
index 41e4650af707..d1d9490d6267 100644
--- a/www/py-graphite-web/files/pkg-message.in
+++ b/www/py-graphite-web/files/pkg-message.in
@@ -1,7 +1,25 @@
-==============================================================================
+========================================================================
+
+Please note that this port/package overrides the default installation layout
+for Graphite! To setup graphite, you will need to:
+
+* Set the SECRET_KEY in %%PREFIX%%/etc/graphite/local_settings.py
+
+* Initialize the sqlite user database and create the admin user:
+
+ python2 %%PYTHON_SITELIBDIR%%/graphite/manage.py syncdb
+
+* Build the index:
+
+ %%PREFIX%%/bin/build-index.sh
+
+* Change the ownership of the user database so the webapp can write to it:
+
+ chown -R %%WWWOWN%%:%%WWWGRP%% /var/db/graphite/ /var/log/graphite/
-To run graphite, you will need to setup Apache by creating a vhost similar to
-the following:
+* Setup a web server:
+
+Setup Apache by creating a vhost similar to the following:
<VirtualHost *:80>
ServerName graphite
@@ -56,20 +74,6 @@ the following:
</VirtualHost>
-You should set the SECRET_KEY in %%PREFIX%%/etc/graphite/local_settings.py
-
-Then initialize the sqlite user database and create the admin user:
-
- python2 %%PYTHON_SITELIBDIR%%/graphite/manage.py syncdb
-
-Then build the index:
-
- %%PREFIX%%/bin/build-index.sh
-
-Change the ownership of the user database so the webapp can write to it:
-
- chown -R %%WWWOWN%%:%%WWWGRP%% /var/db/graphite/ /var/log/graphite/
-
Now you should be able to access the graphite virtual host you created in the
first step.