summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README26
1 files changed, 26 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..7a68675
--- /dev/null
+++ b/README
@@ -0,0 +1,26 @@
+Apache::Defaults module
+=======================
+
+This module provides a mechanism for detecting version, default settings,
+and the preloaded modules of the Apache httpd server. It does so by locating
+the server binary, invoking it with appropriate options and analyzing the
+output it produces.
+
+Example usage:
+
+ $x = new Apache::Defaults;
+ printf("%s, version %s, built on %s\n",
+ $x->name, $x->version, $x->built->strftime('%c'));
+ printf("Server root directory: %s\n", $x->server_root);
+ printf("Configuration file: %s\n", $x->defines('SERVER_CONFIG_FILE'));
+
+Copying
+=======
+This package is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3, or (at your option)
+any later version.
+
+See http://www.gnu.org/licenses.
+
+ \ No newline at end of file

Return to:

Send suggestions and report system problems to the System administrator.