summaryrefslogtreecommitdiff
path: root/README
blob: 7a686752603a481a35254fe8fddf8be9fef5e56b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.

   

Return to:

Send suggestions and report system problems to the System administrator.