diff options
author | Stef Walter <stef@memberwebs.com> | 2006-08-30 21:18:01 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-08-30 21:18:01 +0000 |
commit | 96e3074f9de2b0c7ba8b0b11edfa42ffd2803037 (patch) | |
tree | c7b5addc5b6f0b14fe028b54fae6384e1cd1f2a6 /doc/httpd-sample.conf | |
parent | e228b6ac441b5a9ceff398d874ba7b4a118c819b (diff) |
Reorganize things, and build and install them properly
Diffstat (limited to 'doc/httpd-sample.conf')
-rw-r--r-- | doc/httpd-sample.conf | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/doc/httpd-sample.conf b/doc/httpd-sample.conf index 05b0dba..4e1df94 100644 --- a/doc/httpd-sample.conf +++ b/doc/httpd-sample.conf @@ -1,7 +1,15 @@ -Alias /rrdui/ /home/joe/rrdui/html/ -ScriptAlias /rrduiback /home/joe/rrdui/tools/rrdui-cgi.py -<Location "/rrduiback"> - SetEnv CONFDIR "/home/joe/rd-test/conf" - SetEnv WORKDIR "/home/joe/rd-test/work" +# The front end to use +Alias /rrdui/ /usr/local/share/rrdui/ajax/ + +# The CGI backend which manages the graphs +ScriptAlias /rrdui-back /usr/local/bin/rrdui-cgi +<Location "/rrdui-back"> + + # The location of the configuration files + SetEnv CONFDIR "/usr/local/etc/rrdbot" + + # The location of the RRD files + SetEnv WORKDIR "/var/db/rrdbot" + </Location> |