summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-02-22 16:42:25 +0200
committerSergey Poznyakoff <gray@gnu.org>2018-02-22 16:42:25 +0200
commitbf4f26efaccc0d5e44948d66457f8b8b4d3907d6 (patch)
treea40c65bf40c9a2f51ad0e2167a505272833533e4
parenta69997afd7c96a6f6c91a6a88653c37387b09190 (diff)
downloadapache-defaults-bf4f26efaccc0d5e44948d66457f8b8b4d3907d6.tar.gz
apache-defaults-bf4f26efaccc0d5e44948d66457f8b8b4d3907d6.tar.bz2
Add the README file
-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.