• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Apache/H12-Feb-2021-577342

t/H12-Feb-2021-165143

ChangesH A D12-Feb-2021257 109

LICENSEH A D25-Aug-201925.9 KiB503418

MANIFESTH A D12-Feb-2021324 1413

META.jsonH A D12-Feb-20211.7 KiB7069

META.ymlH A D12-Feb-2021901 3736

Makefile.PLH A D12-Feb-20211.1 KiB3937

READMEH A D25-Aug-2019858 2619

README

1Apache::Defaults module
2=======================
3
4This module provides a mechanism for detecting version, default settings,
5and the preloaded modules of the Apache httpd server. It does so by locating
6the server binary, invoking it with appropriate options and analyzing the
7output it produces.
8
9Example usage:
10
11   $x = new Apache::Defaults;
12   printf("%s, version %s, built on %s\n",
13          $x->name, $x->version, $x->built->strftime('%c'));
14   printf("Server root directory: %s\n", $x->server_root);
15   printf("Configuration file: %s\n", $x->defines('SERVER_CONFIG_FILE'));
16
17Copying
18=======
19This package is free software; you can redistribute it and/or modify
20it under the terms of the GNU General Public License as published by
21the Free Software Foundation; either version 3, or (at your option)
22any later version.
23
24See http://www.gnu.org/licenses.
25
26