diff options
Diffstat (limited to 'doc')
-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> |