Code

Added information about the new `cacert' option in the `apache' plugin to `collectd...
authorocto <octo>
Tue, 25 Apr 2006 12:46:47 +0000 (12:46 +0000)
committerocto <octo>
Tue, 25 Apr 2006 12:46:47 +0000 (12:46 +0000)
src/collectd.conf.pod

index a00bbb21f8fe8142234032e5b6de1089c818269c..91b06bde1b289d2de30057f0e7193f665d4beb7c 100644 (file)
@@ -106,6 +106,20 @@ C<Plugin>-Section. Which options exist depends on the plugin used:
 
 =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>
@@ -122,6 +136,12 @@ Optional user name needed for authentication.
 
 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>