summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8caaa5d)
raw | patch | inline | side by side (parent: 8caaa5d)
author | octo <octo> | |
Tue, 25 Apr 2006 12:46:47 +0000 (12:46 +0000) | ||
committer | octo <octo> | |
Tue, 25 Apr 2006 12:46:47 +0000 (12:46 +0000) |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index a00bbb21f8fe8142234032e5b6de1089c818269c..91b06bde1b289d2de30057f0e7193f665d4beb7c 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
=head2 Plugin C<apache>
+To configure the C<apache>-plugin you first need to configure the Apache
+webserver correctly. The Apache-plugin C<mod_status> needs to be loaded and
+working and the C<ExtendedStatus> directive needs to be B<enabled>. You can use
+the following snipped to base your Apache config upon:
+
+ ExtendedStatus on
+ <IfModule mod_status.c>
+ <Location /mod_status>
+ SetHandler server-status
+ </Location>
+ </IfModule>
+
+The following options are accepted by the C<apache>-plugin:
+
=over 4
=item B<URL> I<http://host/mod_status?auto>
Optional password needed for authentication.
+=item B<CACert> I<File>
+
+File that holds one or more SSL certificates. If you want to use HTTPS you will
+possibly need this option. What CA certificates come bundeled with C<libcurl>
+and are checked by default depends on the distribution you use.
+
=back
=head2 Plugin C<hddtemp>