yawast 0.2.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/.ruby-version +1 -0
- data/.travis.yml +7 -0
- data/README.md +454 -0
- data/Rakefile +9 -0
- data/bin/yawast +69 -0
- data/lib/commands/cms.rb +10 -0
- data/lib/commands/head.rb +12 -0
- data/lib/commands/scan.rb +11 -0
- data/lib/commands/ssl.rb +11 -0
- data/lib/commands/utils.rb +36 -0
- data/lib/resources/common.txt +1960 -0
- data/lib/scanner/apache.rb +72 -0
- data/lib/scanner/cms.rb +14 -0
- data/lib/scanner/core.rb +95 -0
- data/lib/scanner/generic.rb +323 -0
- data/lib/scanner/iis.rb +63 -0
- data/lib/scanner/nginx.rb +13 -0
- data/lib/scanner/obj_presence.rb +63 -0
- data/lib/scanner/php.rb +19 -0
- data/lib/scanner/ssl.rb +237 -0
- data/lib/scanner/ssl_labs.rb +491 -0
- data/lib/shared/http.rb +67 -0
- data/lib/string_ext.rb +16 -0
- data/lib/uri_ext.rb +5 -0
- data/lib/util.rb +25 -0
- data/lib/yawast.rb +57 -0
- data/test/base.rb +43 -0
- data/test/data/apache_server_info.txt +486 -0
- data/test/data/apache_server_status.txt +184 -0
- data/test/data/cms_none_body.txt +242 -0
- data/test/data/cms_wordpress_body.txt +467 -0
- data/test/data/iis_server_header.txt +13 -0
- data/test/data/tomcat_release_notes.txt +172 -0
- data/test/data/wordpress_readme_html.txt +86 -0
- data/test/test_cmd_util.rb +35 -0
- data/test/test_helper.rb +5 -0
- data/test/test_object_presence.rb +36 -0
- data/test/test_scan_apache_banner.rb +58 -0
- data/test/test_scan_apache_server_info.rb +22 -0
- data/test/test_scan_apache_server_status.rb +22 -0
- data/test/test_scan_cms.rb +27 -0
- data/test/test_scan_iis_headers.rb +40 -0
- data/test/test_scan_nginx_banner.rb +18 -0
- data/test/test_shared_http.rb +40 -0
- data/test/test_shared_util.rb +44 -0
- data/test/test_string_ext.rb +15 -0
- data/test/test_yawast.rb +17 -0
- data/yawast.gemspec +35 -0
- metadata +283 -0
data/test/base.rb
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
module TestBase
|
2
|
+
def override_stdout
|
3
|
+
@orig_stdout = $stdout
|
4
|
+
reset_stdout
|
5
|
+
end
|
6
|
+
|
7
|
+
def stdout_value
|
8
|
+
$stdout.string
|
9
|
+
end
|
10
|
+
|
11
|
+
def reset_stdout
|
12
|
+
$stdout = StringIO.new
|
13
|
+
end
|
14
|
+
|
15
|
+
def restore_stdout
|
16
|
+
$stdout = @orig_stdout
|
17
|
+
end
|
18
|
+
|
19
|
+
def start_web_server(file, url, port = 1234)
|
20
|
+
thr = Thread.new {
|
21
|
+
server = WEBrick::HTTPServer.new :Port => port,
|
22
|
+
:BindAddress => 'localhost',
|
23
|
+
:AccessLog => [],
|
24
|
+
:Logger => WEBrick::Log.new('/dev/null')
|
25
|
+
server.mount "/#{url}", WEBrick::HTTPServlet::FileHandler, file
|
26
|
+
server.start
|
27
|
+
}
|
28
|
+
|
29
|
+
thr
|
30
|
+
end
|
31
|
+
|
32
|
+
def parse_headers_from_file(file)
|
33
|
+
headers = {}
|
34
|
+
File.foreach(file) do |line|
|
35
|
+
key = line.partition(':').first.trim
|
36
|
+
value = line.partition(':').last.trim
|
37
|
+
|
38
|
+
headers[key] = value
|
39
|
+
end
|
40
|
+
|
41
|
+
headers
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,486 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
2
|
+
<html><head><title>Server Information</title></head>
|
3
|
+
<body><h1 align="center">Apache Server Information</h1>
|
4
|
+
<dl><dt><tt><a href="#server">Server Settings</a>, <a href="#mod_userdir.c">mod_userdir.c</a>, <a href="#mod_setenvif.c">mod_setenvif.c</a>, <a href="#mod_negotiation.c">mod_negotiation.c</a>, <a href="#mod_mime.c">mod_mime.c</a>, <a href="#mod_log_config.c">mod_log_config.c</a>, <a href="#mod_isapi.c">mod_isapi.c</a>, <a href="#mod_info.c">mod_info.c</a>, <a href="#mod_include.c">mod_include.c</a>, <a href="#mod_imap.c">mod_imap.c</a>, <a href="#mod_env.c">mod_env.c</a>, <a href="#mod_dir.c">mod_dir.c</a>, <a href="#mod_cgi.c">mod_cgi.c</a>, <a href="#mod_autoindex.c">mod_autoindex.c</a>, <a href="#mod_auth.c">mod_auth.c</a>, <a href="#mod_asis.c">mod_asis.c</a>, <a href="#mod_alias.c">mod_alias.c</a>, <a href="#mod_actions.c">mod_actions.c</a>, <a href="#mod_access.c">mod_access.c</a>, <a href="#mod_so.c">mod_so.c</a>, <a href="#http_core.c">http_core.c</a>, <a href="#mpm_winnt.c">mpm_winnt.c</a>, <a href="#mod_win32.c">mod_win32.c</a>, <a href="#core.c">core.c</a></tt></dt></dl><hr /><dl><dt><a name="server"><strong>Server Version:</strong> <font size="+1"><tt>Apache/2.0.44 (Win32)</tt></font></a></dt>
|
5
|
+
<dt><strong>Server Built:</strong> <font size="+1"><tt>Jan 18 2003 11:47:09</tt></font></dt>
|
6
|
+
<dt><strong>API Version:</strong> <tt>20020903:0</tt></dt>
|
7
|
+
<dt><strong>Hostname/port:</strong> <tt>pub.perlig.de:80</tt></dt>
|
8
|
+
<dt><strong>Timeouts:</strong> <tt>connection: 300 keep-alive: 300</tt></dt><dt><strong>MPM Name:</strong> <tt>WinNT</tt></dt>
|
9
|
+
<dt><strong>MPM Information:</strong> <tt>Max Daemons: 64 Threaded: yes Forked: no</tt></dt>
|
10
|
+
<dt><strong>Server Root:</strong> <tt>C:/Programme/Apache Group/Apache2</tt></dt>
|
11
|
+
<dt><strong>Config File:</strong> <tt>conf/httpd.conf</tt></dt>
|
12
|
+
</dl><hr /><dl><dt><a name="mod_userdir.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_userdir.c</tt></font></a></dt>
|
13
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
14
|
+
<tt>Create Server Config</tt></dt><dt><strong>Request Phase Participation:</strong>
|
15
|
+
<tt>Translate Path</tt></dt>
|
16
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>UserDir - <i>the public subdirectory in users' home directories, or 'disabled', or 'disabled username username...', or 'enabled username username...'</i></tt></dd>
|
17
|
+
<dt><strong>Current Configuration:</strong></dt>
|
18
|
+
<dd><tt>UserDir <i>"My Documents/My Website"</i></tt></dd>
|
19
|
+
</dl><hr />
|
20
|
+
<dl><dt><a name="mod_setenvif.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_setenvif.c</tt></font></a></dt>
|
21
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
22
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt>, <tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
23
|
+
<tt>Post-Read Request</tt>, <tt>Header Parse</tt></dt>
|
24
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>SetEnvIf - <i>A header-name, regex and a list of variables.</i></tt></dd>
|
25
|
+
<dd><tt>SetEnvIfNoCase - <i>a header-name, regex and a list of variables.</i></tt></dd>
|
26
|
+
<dd><tt>BrowserMatch - <i>A browser regex and a list of variables.</i></tt></dd>
|
27
|
+
<dd><tt>BrowserMatchNoCase - <i>A browser regex and a list of variables.</i></tt></dd>
|
28
|
+
<dt><strong>Current Configuration:</strong></dt>
|
29
|
+
<dd><tt>BrowserMatch <i>"Mozilla/2" nokeepalive</i></tt></dd>
|
30
|
+
<dd><tt>BrowserMatch <i>"MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0</i></tt></dd>
|
31
|
+
<dd><tt>BrowserMatch <i>"RealPlayer 4\.0" force-response-1.0</i></tt></dd>
|
32
|
+
<dd><tt>BrowserMatch <i>"Java/1\.0" force-response-1.0</i></tt></dd>
|
33
|
+
<dd><tt>BrowserMatch <i>"JDK/1\.0" force-response-1.0</i></tt></dd>
|
34
|
+
<dd><tt>BrowserMatch <i>"Microsoft Data Access Internet Publishing Provider" redirect-carefully</i></tt></dd>
|
35
|
+
<dd><tt>BrowserMatch <i>"^WebDrive" redirect-carefully</i></tt></dd>
|
36
|
+
<dd><tt>BrowserMatch <i>"^WebDAVFS/1.[012]" redirect-carefully</i></tt></dd>
|
37
|
+
<dd><tt>BrowserMatch <i>"^gnome-vfs" redirect-carefully</i></tt></dd>
|
38
|
+
</dl><hr />
|
39
|
+
<dl><dt><a name="mod_negotiation.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_negotiation.c</tt></font></a></dt>
|
40
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
41
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
42
|
+
<tt>Check Type</tt>, <tt>Fixups</tt></dt>
|
43
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>CacheNegotiatedDocs - <i>Either 'on' or 'off' (default)</i></tt></dd>
|
44
|
+
<dd><tt>LanguagePriority - <i>space-delimited list of MIME language abbreviations</i></tt></dd>
|
45
|
+
<dd><tt>ForceLanguagePriority - <i>Force LanguagePriority elections, either None, or Fallback and/or Prefer</i></tt></dd>
|
46
|
+
<dt><strong>Current Configuration:</strong></dt>
|
47
|
+
<dd><tt>LanguagePriority <i>en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw</i></tt></dd>
|
48
|
+
<dd><tt>ForceLanguagePriority <i>Prefer Fallback</i></tt></dd>
|
49
|
+
</dl><hr />
|
50
|
+
<dl><dt><a name="mod_mime.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_mime.c</tt></font></a></dt>
|
51
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
52
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
53
|
+
<tt>Check Type</tt></dt>
|
54
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>AddCharset - <i>a charset (e.g., iso-2022-jp), followed by one or more file extensions</i></tt></dd>
|
55
|
+
<dd><tt>AddEncoding - <i>an encoding (e.g., gzip), followed by one or more file extensions</i></tt></dd>
|
56
|
+
<dd><tt>AddHandler - <i>a handler name followed by one or more file extensions</i></tt></dd>
|
57
|
+
<dd><tt>AddInputFilter - <i>input filter name (or ; delimited names) followed by one or more file extensions</i></tt></dd>
|
58
|
+
<dd><tt>AddLanguage - <i>a language (e.g., fr), followed by one or more file extensions</i></tt></dd>
|
59
|
+
<dd><tt>AddOutputFilter - <i>output filter name (or ; delimited names) followed by one or more file extensions</i></tt></dd>
|
60
|
+
<dd><tt>AddType - <i>a mime type followed by one or more file extensions</i></tt></dd>
|
61
|
+
<dd><tt>DefaultLanguage - <i>language to use for documents with no other language file extension</i></tt></dd>
|
62
|
+
<dd><tt>MultiviewsMatch - <i>NegotiatedOnly (default), Handlers and/or Filters, or Any</i></tt></dd>
|
63
|
+
<dd><tt>RemoveCharset - <i>one or more file extensions</i></tt></dd>
|
64
|
+
<dd><tt>RemoveEncoding - <i>one or more file extensions</i></tt></dd>
|
65
|
+
<dd><tt>RemoveHandler - <i>one or more file extensions</i></tt></dd>
|
66
|
+
<dd><tt>RemoveInputFilter - <i>one or more file extensions</i></tt></dd>
|
67
|
+
<dd><tt>RemoveLanguage - <i>one or more file extensions</i></tt></dd>
|
68
|
+
<dd><tt>RemoveOutputFilter - <i>one or more file extensions</i></tt></dd>
|
69
|
+
<dd><tt>RemoveType - <i>one or more file extensions</i></tt></dd>
|
70
|
+
<dd><tt>TypesConfig - <i>the MIME types config file</i></tt></dd>
|
71
|
+
<dd><tt>ModMimeUsePathInfo - <i>Set to 'yes' to allow mod_mime to use path info for type checking</i></tt></dd>
|
72
|
+
<dt><strong>Current Configuration:</strong></dt>
|
73
|
+
<dd><tt>TypesConfig <i>conf/mime.types</i></tt></dd>
|
74
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/manual"></tt></dd>
|
75
|
+
<dd><tt> AddOutputFilter <i>Includes html</i></tt></dd>
|
76
|
+
<dd><tt></Directory></tt></dd>
|
77
|
+
<dd><tt>AddEncoding <i>x-compress Z</i></tt></dd>
|
78
|
+
<dd><tt>AddEncoding <i>x-gzip gz tgz</i></tt></dd>
|
79
|
+
<dd><tt>AddLanguage <i>da .dk</i></tt></dd>
|
80
|
+
<dd><tt>AddLanguage <i>nl .nl</i></tt></dd>
|
81
|
+
<dd><tt>AddLanguage <i>en .en</i></tt></dd>
|
82
|
+
<dd><tt>AddLanguage <i>et .et</i></tt></dd>
|
83
|
+
<dd><tt>AddLanguage <i>fr .fr</i></tt></dd>
|
84
|
+
<dd><tt>AddLanguage <i>de .de</i></tt></dd>
|
85
|
+
<dd><tt>AddLanguage <i>he .he</i></tt></dd>
|
86
|
+
<dd><tt>AddLanguage <i>el .el</i></tt></dd>
|
87
|
+
<dd><tt>AddLanguage <i>it .it</i></tt></dd>
|
88
|
+
<dd><tt>AddLanguage <i>ja .ja</i></tt></dd>
|
89
|
+
<dd><tt>AddLanguage <i>pl .po</i></tt></dd>
|
90
|
+
<dd><tt>AddLanguage <i>ko .ko</i></tt></dd>
|
91
|
+
<dd><tt>AddLanguage <i>pt .pt</i></tt></dd>
|
92
|
+
<dd><tt>AddLanguage <i>nn .nn</i></tt></dd>
|
93
|
+
<dd><tt>AddLanguage <i>no .no</i></tt></dd>
|
94
|
+
<dd><tt>AddLanguage <i>pt-br .pt-br</i></tt></dd>
|
95
|
+
<dd><tt>AddLanguage <i>ltz .ltz</i></tt></dd>
|
96
|
+
<dd><tt>AddLanguage <i>ca .ca</i></tt></dd>
|
97
|
+
<dd><tt>AddLanguage <i>es .es</i></tt></dd>
|
98
|
+
<dd><tt>AddLanguage <i>sv .se</i></tt></dd>
|
99
|
+
<dd><tt>AddLanguage <i>cz .cz</i></tt></dd>
|
100
|
+
<dd><tt>AddLanguage <i>ru .ru</i></tt></dd>
|
101
|
+
<dd><tt>AddLanguage <i>tw .tw</i></tt></dd>
|
102
|
+
<dd><tt>AddLanguage <i>zh-tw .tw</i></tt></dd>
|
103
|
+
<dd><tt>AddLanguage <i>hr .hr</i></tt></dd>
|
104
|
+
<dd><tt>AddCharset <i>ISO-8859-1 .iso8859-1 .latin1</i></tt></dd>
|
105
|
+
<dd><tt>AddCharset <i>ISO-8859-2 .iso8859-2 .latin2 .cen</i></tt></dd>
|
106
|
+
<dd><tt>AddCharset <i>ISO-8859-3 .iso8859-3 .latin3</i></tt></dd>
|
107
|
+
<dd><tt>AddCharset <i>ISO-8859-4 .iso8859-4 .latin4</i></tt></dd>
|
108
|
+
<dd><tt>AddCharset <i>ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru</i></tt></dd>
|
109
|
+
<dd><tt>AddCharset <i>ISO-8859-6 .iso8859-6 .latin6 .arb</i></tt></dd>
|
110
|
+
<dd><tt>AddCharset <i>ISO-8859-7 .iso8859-7 .latin7 .grk</i></tt></dd>
|
111
|
+
<dd><tt>AddCharset <i>ISO-8859-8 .iso8859-8 .latin8 .heb</i></tt></dd>
|
112
|
+
<dd><tt>AddCharset <i>ISO-8859-9 .iso8859-9 .latin9 .trk</i></tt></dd>
|
113
|
+
<dd><tt>AddCharset <i>ISO-2022-JP .iso2022-jp .jis</i></tt></dd>
|
114
|
+
<dd><tt>AddCharset <i>ISO-2022-KR .iso2022-kr .kis</i></tt></dd>
|
115
|
+
<dd><tt>AddCharset <i>ISO-2022-CN .iso2022-cn .cis</i></tt></dd>
|
116
|
+
<dd><tt>AddCharset <i>Big5 .Big5 .big5</i></tt></dd>
|
117
|
+
<dd><tt>AddCharset <i>WINDOWS-1251 .cp-1251 .win-1251</i></tt></dd>
|
118
|
+
<dd><tt>AddCharset <i>CP866 .cp866</i></tt></dd>
|
119
|
+
<dd><tt>AddCharset <i>KOI8-r .koi8-r .koi8-ru</i></tt></dd>
|
120
|
+
<dd><tt>AddCharset <i>KOI8-ru .koi8-uk .ua</i></tt></dd>
|
121
|
+
<dd><tt>AddCharset <i>ISO-10646-UCS-2 .ucs2</i></tt></dd>
|
122
|
+
<dd><tt>AddCharset <i>ISO-10646-UCS-4 .ucs4</i></tt></dd>
|
123
|
+
<dd><tt>AddCharset <i>UTF-8 .utf8</i></tt></dd>
|
124
|
+
<dd><tt>AddCharset <i>GB2312 .gb2312 .gb</i></tt></dd>
|
125
|
+
<dd><tt>AddCharset <i>utf-7 .utf7</i></tt></dd>
|
126
|
+
<dd><tt>AddCharset <i>utf-8 .utf8</i></tt></dd>
|
127
|
+
<dd><tt>AddCharset <i>big5 .big5 .b5</i></tt></dd>
|
128
|
+
<dd><tt>AddCharset <i>EUC-TW .euc-tw</i></tt></dd>
|
129
|
+
<dd><tt>AddCharset <i>EUC-JP .euc-jp</i></tt></dd>
|
130
|
+
<dd><tt>AddCharset <i>EUC-KR .euc-kr</i></tt></dd>
|
131
|
+
<dd><tt>AddCharset <i>shift_jis .sjis</i></tt></dd>
|
132
|
+
<dd><tt>AddType <i>application/x-tar .tgz</i></tt></dd>
|
133
|
+
<dd><tt>AddType <i>image/x-icon .ico</i></tt></dd>
|
134
|
+
<dd><tt>AddHandler <i>type-map var</i></tt></dd>
|
135
|
+
</dl><hr />
|
136
|
+
<dl><dt><a name="mod_log_config.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_log_config.c</tt></font></a></dt>
|
137
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
138
|
+
<tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
139
|
+
<tt>Logging</tt></dt>
|
140
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>CustomLog - <i>a file name, a custom log format string or format name, and an optional "env=" clause (see docs)</i></tt></dd>
|
141
|
+
<dd><tt>TransferLog - <i>the filename of the access log</i></tt></dd>
|
142
|
+
<dd><tt>LogFormat - <i>a log format string (see docs) and an optional format name</i></tt></dd>
|
143
|
+
<dd><tt>CookieLog - <i>the filename of the cookie log</i></tt></dd>
|
144
|
+
<dd><tt>BufferedLogs - <i>Enable Buffered Logging (experimental)</i></tt></dd>
|
145
|
+
<dt><strong>Current Configuration:</strong></dt>
|
146
|
+
<dd><tt>LogFormat <i>"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined</i></tt></dd>
|
147
|
+
<dd><tt>LogFormat <i>"%h %l %u %t \"%r\" %>s %b" common</i></tt></dd>
|
148
|
+
<dd><tt>LogFormat <i>"%{Referer}i -> %U" referer</i></tt></dd>
|
149
|
+
<dd><tt>LogFormat <i>"%{User-agent}i" agent</i></tt></dd>
|
150
|
+
<dd><tt>CustomLog <i>logs/access.log common</i></tt></dd>
|
151
|
+
</dl><hr />
|
152
|
+
<dl><dt><a name="mod_isapi.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_isapi.c</tt></font></a></dt>
|
153
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
154
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
155
|
+
<tt> <em>none</em></tt></dt>
|
156
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>ISAPIReadAheadBuffer - <i>Maximum client request body to initially pass to the ISAPI handler (default: 49152)</i></tt></dd>
|
157
|
+
<dd><tt>ISAPILogNotSupported - <i>Log requests not supported by the ISAPI server on or off (default: off)</i></tt></dd>
|
158
|
+
<dd><tt>ISAPIAppendLogToErrors - <i>Send all Append Log requests to the error log on or off (default: off)</i></tt></dd>
|
159
|
+
<dd><tt>ISAPIAppendLogToQuery - <i>Append Log requests are concatinated to the query args on or off (default: on)</i></tt></dd>
|
160
|
+
<dd><tt>ISAPIFakeAsync - <i>Fake Asynchronous support for isapi callbacks on or off [Experimental] (default: off)</i></tt></dd>
|
161
|
+
<dd><tt>ISAPICacheFile - <i>Cache the specified ISAPI extension in-process</i></tt></dd>
|
162
|
+
<dt><strong>Current Configuration:</strong></dt>
|
163
|
+
</dl><hr />
|
164
|
+
<dl><dt><a name="mod_info.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_info.c</tt></font></a></dt>
|
165
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
166
|
+
<tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
167
|
+
<tt> <em>none</em></tt></dt>
|
168
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>AddModuleInfo - <i>a module name and additional information on that module</i></tt></dd>
|
169
|
+
<dt><strong>Current Configuration:</strong></dt>
|
170
|
+
</dl><hr />
|
171
|
+
<dl><dt><a name="mod_include.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_include.c</tt></font></a></dt>
|
172
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
173
|
+
<tt>Create Directory Config</tt>, <tt>Create Server Config</tt></dt><dt><strong>Request Phase Participation:</strong>
|
174
|
+
<tt>Fixups</tt></dt>
|
175
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>XBitHack - <i>Off, On, or Full</i></tt></dd>
|
176
|
+
<dd><tt>SSIErrorMsg - <i>a string</i></tt></dd>
|
177
|
+
<dd><tt>SSITimeFormat - <i>a strftime(3) formatted string</i></tt></dd>
|
178
|
+
<dd><tt>SSIStartTag - <i>SSI Start String Tag</i></tt></dd>
|
179
|
+
<dd><tt>SSIEndTag - <i>SSI End String Tag</i></tt></dd>
|
180
|
+
<dd><tt>SSIUndefinedEcho - <i>SSI Start String Tag</i></tt></dd>
|
181
|
+
<dt><strong>Current Configuration:</strong></dt>
|
182
|
+
</dl><hr />
|
183
|
+
<dl><dt><a name="mod_imap.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_imap.c</tt></font></a></dt>
|
184
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
185
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
186
|
+
<tt> <em>none</em></tt></dt>
|
187
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>ImapMenu - <i>the type of menu generated: none, formatted, semiformatted, unformatted</i></tt></dd>
|
188
|
+
<dd><tt>ImapDefault - <i>the action taken if no match: error, nocontent, referer, menu, URL</i></tt></dd>
|
189
|
+
<dd><tt>ImapBase - <i>the base for all URL's: map, referer, URL (or start of)</i></tt></dd>
|
190
|
+
<dt><strong>Current Configuration:</strong></dt>
|
191
|
+
</dl><hr />
|
192
|
+
<dl><dt><a name="mod_env.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_env.c</tt></font></a></dt>
|
193
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
194
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
195
|
+
<tt>Fixups</tt></dt>
|
196
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>PassEnv - <i>a list of environment variables to pass to CGI.</i></tt></dd>
|
197
|
+
<dd><tt>SetEnv - <i>an environment variable name and optional value to pass to CGI.</i></tt></dd>
|
198
|
+
<dd><tt>UnsetEnv - <i>a list of variables to remove from the CGI environment.</i></tt></dd>
|
199
|
+
<dt><strong>Current Configuration:</strong></dt>
|
200
|
+
</dl><hr />
|
201
|
+
<dl><dt><a name="mod_dir.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_dir.c</tt></font></a></dt>
|
202
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
203
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
204
|
+
<tt>Fixups</tt></dt>
|
205
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>DirectoryIndex - <i>a list of file names</i></tt></dd>
|
206
|
+
<dt><strong>Current Configuration:</strong></dt>
|
207
|
+
<dd><tt>DirectoryIndex <i>index.html index.html.var</i></tt></dd>
|
208
|
+
</dl><hr />
|
209
|
+
<dl><dt><a name="mod_cgi.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_cgi.c</tt></font></a></dt>
|
210
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
211
|
+
<tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
212
|
+
<tt> <em>none</em></tt></dt>
|
213
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>ScriptLog - <i>the name of a log for script debugging info</i></tt></dd>
|
214
|
+
<dd><tt>ScriptLogLength - <i>the maximum length (in bytes) of the script debug log</i></tt></dd>
|
215
|
+
<dd><tt>ScriptLogBuffer - <i>the maximum size (in bytes) to record of a POST request</i></tt></dd>
|
216
|
+
<dt><strong>Current Configuration:</strong></dt>
|
217
|
+
</dl><hr />
|
218
|
+
<dl><dt><a name="mod_autoindex.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_autoindex.c</tt></font></a></dt>
|
219
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
220
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
221
|
+
<tt> <em>none</em></tt></dt>
|
222
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>AddIcon - <i>an icon URL followed by one or more filenames</i></tt></dd>
|
223
|
+
<dd><tt>AddIconByType - <i>an icon URL followed by one or more MIME types</i></tt></dd>
|
224
|
+
<dd><tt>AddIconByEncoding - <i>an icon URL followed by one or more content encodings</i></tt></dd>
|
225
|
+
<dd><tt>AddAlt - <i>alternate descriptive text followed by one or more filenames</i></tt></dd>
|
226
|
+
<dd><tt>AddAltByType - <i>alternate descriptive text followed by one or more MIME types</i></tt></dd>
|
227
|
+
<dd><tt>AddAltByEncoding - <i>alternate descriptive text followed by one or more content encodings</i></tt></dd>
|
228
|
+
<dd><tt>IndexOptions - <i>one or more index options [+|-][]</i></tt></dd>
|
229
|
+
<dd><tt>IndexOrderDefault - <i>{Ascending,Descending} {Name,Size,Description,Date}</i></tt></dd>
|
230
|
+
<dd><tt>IndexIgnore - <i>one or more file extensions</i></tt></dd>
|
231
|
+
<dd><tt>AddDescription - <i>Descriptive text followed by one or more filenames</i></tt></dd>
|
232
|
+
<dd><tt>HeaderName - <i>a filename</i></tt></dd>
|
233
|
+
<dd><tt>ReadmeName - <i>a filename</i></tt></dd>
|
234
|
+
<dd><tt>FancyIndexing - <i>The FancyIndexing directive is no longer supported. Use IndexOptions FancyIndexing.</i></tt></dd>
|
235
|
+
<dd><tt>DefaultIcon - <i>an icon URL</i></tt></dd>
|
236
|
+
<dt><strong>Current Configuration:</strong></dt>
|
237
|
+
<dd><tt>IndexOptions <i>FancyIndexing VersionSort</i></tt></dd>
|
238
|
+
<dd><tt>AddIconByEncoding <i>(CMP,/icons/compressed.gif) x-compress x-gzip</i></tt></dd>
|
239
|
+
<dd><tt>AddIconByType <i>(TXT,/icons/text.gif) text/*</i></tt></dd>
|
240
|
+
<dd><tt>AddIconByType <i>(IMG,/icons/image2.gif) image/*</i></tt></dd>
|
241
|
+
<dd><tt>AddIconByType <i>(SND,/icons/sound2.gif) audio/*</i></tt></dd>
|
242
|
+
<dd><tt>AddIconByType <i>(VID,/icons/movie.gif) video/*</i></tt></dd>
|
243
|
+
<dd><tt>AddIcon <i>/icons/binary.gif .bin .exe</i></tt></dd>
|
244
|
+
<dd><tt>AddIcon <i>/icons/binhex.gif .hqx</i></tt></dd>
|
245
|
+
<dd><tt>AddIcon <i>/icons/tar.gif .tar</i></tt></dd>
|
246
|
+
<dd><tt>AddIcon <i>/icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv</i></tt></dd>
|
247
|
+
<dd><tt>AddIcon <i>/icons/compressed.gif .Z .z .tgz .gz .zip</i></tt></dd>
|
248
|
+
<dd><tt>AddIcon <i>/icons/a.gif .ps .ai .eps</i></tt></dd>
|
249
|
+
<dd><tt>AddIcon <i>/icons/layout.gif .html .shtml .htm .pdf</i></tt></dd>
|
250
|
+
<dd><tt>AddIcon <i>/icons/text.gif .txt</i></tt></dd>
|
251
|
+
<dd><tt>AddIcon <i>/icons/c.gif .c</i></tt></dd>
|
252
|
+
<dd><tt>AddIcon <i>/icons/p.gif .pl .py</i></tt></dd>
|
253
|
+
<dd><tt>AddIcon <i>/icons/f.gif .for</i></tt></dd>
|
254
|
+
<dd><tt>AddIcon <i>/icons/dvi.gif .dvi</i></tt></dd>
|
255
|
+
<dd><tt>AddIcon <i>/icons/uuencoded.gif .uu</i></tt></dd>
|
256
|
+
<dd><tt>AddIcon <i>/icons/script.gif .conf .sh .shar .csh .ksh .tcl</i></tt></dd>
|
257
|
+
<dd><tt>AddIcon <i>/icons/tex.gif .tex</i></tt></dd>
|
258
|
+
<dd><tt>AddIcon <i>/icons/bomb.gif core</i></tt></dd>
|
259
|
+
<dd><tt>AddIcon <i>/icons/back.gif ..</i></tt></dd>
|
260
|
+
<dd><tt>AddIcon <i>/icons/hand.right.gif README</i></tt></dd>
|
261
|
+
<dd><tt>AddIcon <i>/icons/folder.gif ^^DIRECTORY^^</i></tt></dd>
|
262
|
+
<dd><tt>AddIcon <i>/icons/blank.gif ^^BLANKICON^^</i></tt></dd>
|
263
|
+
<dd><tt>DefaultIcon <i>/icons/unknown.gif</i></tt></dd>
|
264
|
+
<dd><tt>ReadmeName <i>README.html</i></tt></dd>
|
265
|
+
<dd><tt>HeaderName <i>HEADER.html</i></tt></dd>
|
266
|
+
<dd><tt>IndexIgnore <i>.??* *~ *# HEADER* README* RCS CVS *,v *,t</i></tt></dd>
|
267
|
+
</dl><hr />
|
268
|
+
<dl><dt><a name="mod_auth.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_auth.c</tt></font></a></dt>
|
269
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
270
|
+
<tt>Create Directory Config</tt></dt><dt><strong>Request Phase Participation:</strong>
|
271
|
+
<tt>Verify User ID</tt>, <tt>Verify User Access</tt></dt>
|
272
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>AuthUserFile - <i>text file containing user IDs and passwords</i></tt></dd>
|
273
|
+
<dd><tt>AuthGroupFile - <i>text file containing group names and member user IDs</i></tt></dd>
|
274
|
+
<dd><tt>AuthAuthoritative - <i>Set to 'no' to allow access control to be passed along to lower modules if the UserID is not known to this module</i></tt></dd>
|
275
|
+
<dt><strong>Current Configuration:</strong></dt>
|
276
|
+
</dl><hr />
|
277
|
+
<dl><dt><a name="mod_asis.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_asis.c</tt></font></a></dt>
|
278
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
279
|
+
<tt> <em>none</em></tt></dt><dt><strong>Request Phase Participation:</strong>
|
280
|
+
<tt> <em>none</em></tt></dt>
|
281
|
+
<dt><strong>Module Directives:</strong> <tt>none</tt></dt></dl><hr />
|
282
|
+
<dl><dt><a name="mod_alias.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_alias.c</tt></font></a></dt>
|
283
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
284
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt>, <tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
285
|
+
<tt>Translate Path</tt>, <tt>Fixups</tt></dt>
|
286
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>Alias - <i>a fakename and a realname</i></tt></dd>
|
287
|
+
<dd><tt>ScriptAlias - <i>a fakename and a realname</i></tt></dd>
|
288
|
+
<dd><tt>Redirect - <i>an optional status, then document to be redirected and destination URL</i></tt></dd>
|
289
|
+
<dd><tt>AliasMatch - <i>a regular expression and a filename</i></tt></dd>
|
290
|
+
<dd><tt>ScriptAliasMatch - <i>a regular expression and a filename</i></tt></dd>
|
291
|
+
<dd><tt>RedirectMatch - <i>an optional status, then a regular expression and destination URL</i></tt></dd>
|
292
|
+
<dd><tt>RedirectTemp - <i>a document to be redirected, then the destination URL</i></tt></dd>
|
293
|
+
<dd><tt>RedirectPermanent - <i>a document to be redirected, then the destination URL</i></tt></dd>
|
294
|
+
<dt><strong>Current Configuration:</strong></dt>
|
295
|
+
<dd><tt>Alias <i>/icons/ "C:/Programme/Apache Group/Apache2/icons/"</i></tt></dd>
|
296
|
+
<dd><tt>Alias <i>/manual "C:/Programme/Apache Group/Apache2/manual"</i></tt></dd>
|
297
|
+
<dd><tt>ScriptAlias <i>/cgi-bin/ "C:/Programme/Apache Group/Apache2/cgi-bin/"</i></tt></dd>
|
298
|
+
</dl><hr />
|
299
|
+
<dl><dt><a name="mod_actions.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_actions.c</tt></font></a></dt>
|
300
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
301
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
302
|
+
<tt> <em>none</em></tt></dt>
|
303
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>Action - <i>a media type followed by a script name</i></tt></dd>
|
304
|
+
<dd><tt>Script - <i>a method followed by a script name</i></tt></dd>
|
305
|
+
<dt><strong>Current Configuration:</strong></dt>
|
306
|
+
</dl><hr />
|
307
|
+
<dl><dt><a name="mod_access.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_access.c</tt></font></a></dt>
|
308
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
309
|
+
<tt>Create Directory Config</tt></dt><dt><strong>Request Phase Participation:</strong>
|
310
|
+
<tt>Check Access</tt></dt>
|
311
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>order - <i>'allow,deny', 'deny,allow', or 'mutual-failure'</i></tt></dd>
|
312
|
+
<dd><tt>allow - <i>'from' followed by hostnames or IP-address wildcards</i></tt></dd>
|
313
|
+
<dd><tt>deny - <i>'from' followed by hostnames or IP-address wildcards</i></tt></dd>
|
314
|
+
<dt><strong>Current Configuration:</strong></dt>
|
315
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/htdocs"></tt></dd>
|
316
|
+
<dd><tt> Order <i>allow,deny</i></tt></dd>
|
317
|
+
<dd><tt> Allow <i>from all</i></tt></dd>
|
318
|
+
<dd><tt></Directory></tt></dd>
|
319
|
+
<dd><tt><Files ~ "^\.ht"></tt></dd>
|
320
|
+
<dd><tt> Order <i>allow,deny</i></tt></dd>
|
321
|
+
<dd><tt> Deny <i>from all</i></tt></dd>
|
322
|
+
<dd><tt></Files></tt></dd>
|
323
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/icons"></tt></dd>
|
324
|
+
<dd><tt> Order <i>allow,deny</i></tt></dd>
|
325
|
+
<dd><tt> Allow <i>from all</i></tt></dd>
|
326
|
+
<dd><tt></Directory></tt></dd>
|
327
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/manual"></tt></dd>
|
328
|
+
<dd><tt> Order <i>allow,deny</i></tt></dd>
|
329
|
+
<dd><tt> Allow <i>from all</i></tt></dd>
|
330
|
+
<dd><tt></Directory></tt></dd>
|
331
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/cgi-bin"></tt></dd>
|
332
|
+
<dd><tt> Order <i>allow,deny</i></tt></dd>
|
333
|
+
<dd><tt> Allow <i>from all</i></tt></dd>
|
334
|
+
<dd><tt></Directory></tt></dd>
|
335
|
+
<dd><tt><Location /server-info></tt></dd>
|
336
|
+
<dd><tt> Order <i>deny,allow</i></tt></dd>
|
337
|
+
<dd><tt> allow <i>from all</i></tt></dd>
|
338
|
+
<dd><tt></Location></tt></dd>
|
339
|
+
</dl><hr />
|
340
|
+
<dl><dt><a name="mod_so.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_so.c</tt></font></a></dt>
|
341
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
342
|
+
<tt>Create Server Config</tt></dt><dt><strong>Request Phase Participation:</strong>
|
343
|
+
<tt> <em>none</em></tt></dt>
|
344
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>LoadModule - <i>a module name and the name of a shared object file to load it from</i></tt></dd>
|
345
|
+
<dd><tt>LoadFile - <i>shared object file or library to load into the server at runtime</i></tt></dd>
|
346
|
+
<dt><strong>Current Configuration:</strong></dt>
|
347
|
+
</dl><hr />
|
348
|
+
<dl><dt><a name="http_core.c"><strong>Module Name:</strong> <font size="+1"><tt>http_core.c</tt></font></a></dt>
|
349
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
350
|
+
<tt> <em>none</em></tt></dt><dt><strong>Request Phase Participation:</strong>
|
351
|
+
<tt> <em>none</em></tt></dt>
|
352
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>KeepAliveTimeout - <i>Keep-Alive timeout duration (sec)</i></tt></dd>
|
353
|
+
<dd><tt>MaxKeepAliveRequests - <i>Maximum number of Keep-Alive requests per connection, or 0 for infinite</i></tt></dd>
|
354
|
+
<dd><tt>KeepAlive - <i>Whether persistent connections should be On or Off</i></tt></dd>
|
355
|
+
<dt><strong>Current Configuration:</strong></dt>
|
356
|
+
<dd><tt>KeepAlive <i>On</i></tt></dd>
|
357
|
+
<dd><tt>MaxKeepAliveRequests <i>100</i></tt></dd>
|
358
|
+
<dd><tt>KeepAliveTimeout <i>15</i></tt></dd>
|
359
|
+
</dl><hr />
|
360
|
+
<dl><dt><a name="mpm_winnt.c"><strong>Module Name:</strong> <font size="+1"><tt>mpm_winnt.c</tt></font></a></dt>
|
361
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
362
|
+
<tt> <em>none</em></tt></dt><dt><strong>Request Phase Participation:</strong>
|
363
|
+
<tt> <em>none</em></tt></dt>
|
364
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>ListenBacklog - <i>Maximum length of the queue of pending connections, as used by listen(2)</i></tt></dd>
|
365
|
+
<dd><tt>Listen - <i>A port number or a numeric IP address and a port number</i></tt></dd>
|
366
|
+
<dd><tt>SendBufferSize - <i>Send buffer size in bytes</i></tt></dd>
|
367
|
+
<dd><tt>ThreadsPerChild - <i>Number of threads each child creates</i></tt></dd>
|
368
|
+
<dd><tt>ThreadLimit - <i>Maximum worker threads in a server for this run of Apache</i></tt></dd>
|
369
|
+
<dt><strong>Current Configuration:</strong></dt>
|
370
|
+
<dd><tt>ThreadsPerChild <i>250</i></tt></dd>
|
371
|
+
<dd><tt>Listen <i>80</i></tt></dd>
|
372
|
+
</dl><hr />
|
373
|
+
<dl><dt><a name="mod_win32.c"><strong>Module Name:</strong> <font size="+1"><tt>mod_win32.c</tt></font></a></dt>
|
374
|
+
<dt><strong>Content handlers:</strong> <tt> <em>none</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
375
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
376
|
+
<tt> <em>none</em></tt></dt>
|
377
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt>ScriptInterpreterSource - <i>Where to find interpreter to run Win32 scripts (Registry or script shebang line)</i></tt></dd>
|
378
|
+
<dt><strong>Current Configuration:</strong></dt>
|
379
|
+
</dl><hr />
|
380
|
+
<dl><dt><a name="core.c"><strong>Module Name:</strong> <font size="+1"><tt>core.c</tt></font></a></dt>
|
381
|
+
<dt><strong>Content handlers:</strong> <tt> <em>yes</em></tt></dt><dt><strong>Configuration Phase Participation:</strong>
|
382
|
+
<tt>Create Directory Config</tt>, <tt>Merge Directory Configs</tt>, <tt>Create Server Config</tt>, <tt>Merge Server Configs</tt></dt><dt><strong>Request Phase Participation:</strong>
|
383
|
+
<tt>Translate Path</tt>, <tt>Check Access</tt>, <tt>Check Type</tt>, <tt>Fixups</tt></dt>
|
384
|
+
<dt><strong>Module Directives:</strong></dt><dd><tt><Directory - <i>Container for directives affecting resources located in the specified directories</i></tt></dd>
|
385
|
+
<dd><tt><Location - <i>Container for directives affecting resources accessed through the specified URL paths</i></tt></dd>
|
386
|
+
<dd><tt><VirtualHost - <i>Container to map directives to a particular virtual host, takes one or more host addresses</i></tt></dd>
|
387
|
+
<dd><tt><Files - <i>Container for directives affecting files matching specified patterns</i></tt></dd>
|
388
|
+
<dd><tt><Limit - <i>Container for authentication directives when accessed using specified HTTP methods</i></tt></dd>
|
389
|
+
<dd><tt><LimitExcept - <i>Container for authentication directives to be applied when any HTTP method other than those specified is used to access the resource</i></tt></dd>
|
390
|
+
<dd><tt><IfModule - <i>Container for directives based on existance of specified modules</i></tt></dd>
|
391
|
+
<dd><tt><IfDefine - <i>Container for directives based on existance of command line defines</i></tt></dd>
|
392
|
+
<dd><tt><DirectoryMatch - <i>Container for directives affecting resources located in the specified directories</i></tt></dd>
|
393
|
+
<dd><tt><LocationMatch - <i>Container for directives affecting resources accessed through the specified URL paths</i></tt></dd>
|
394
|
+
<dd><tt><FilesMatch - <i>Container for directives affecting files matching specified patterns</i></tt></dd>
|
395
|
+
<dd><tt>AuthType - <i>An HTTP authorization type (e.g., "Basic")</i></tt></dd>
|
396
|
+
<dd><tt>AuthName - <i>The authentication realm (e.g. "Members Only")</i></tt></dd>
|
397
|
+
<dd><tt>Require - <i>Selects which authenticated users or groups may access a protected space</i></tt></dd>
|
398
|
+
<dd><tt>Satisfy - <i>access policy if both allow and require used ('all' or 'any')</i></tt></dd>
|
399
|
+
<dd><tt>AddDefaultCharset - <i>The name of the default charset to add to any Content-Type without one or 'Off' to disable</i></tt></dd>
|
400
|
+
<dd><tt>AcceptPathInfo - <i>Set to on or off for PATH_INFO to be accepted by handlers, or default for the per-handler preference</i></tt></dd>
|
401
|
+
<dd><tt>AccessFileName - <i>Name(s) of per-directory config files (default: .htaccess)</i></tt></dd>
|
402
|
+
<dd><tt>DocumentRoot - <i>Root directory of the document tree</i></tt></dd>
|
403
|
+
<dd><tt>ErrorDocument - <i>Change responses for HTTP errors</i></tt></dd>
|
404
|
+
<dd><tt>AllowOverride - <i>Controls what groups of directives can be configured by per-directory config files</i></tt></dd>
|
405
|
+
<dd><tt>Options - <i>Set a number of attributes for a given directory</i></tt></dd>
|
406
|
+
<dd><tt>DefaultType - <i>the default MIME type for untypable files</i></tt></dd>
|
407
|
+
<dd><tt>FileETag - <i>Specify components used to construct a file's ETag</i></tt></dd>
|
408
|
+
<dd><tt>EnableMMAP - <i>Controls whether memory-mapping may be used to read files</i></tt></dd>
|
409
|
+
<dd><tt>EnableSendfile - <i>Controls whether sendfile may be used to transmit files</i></tt></dd>
|
410
|
+
<dd><tt>Port - <i>Port was replaced with Listen in Apache 2.0</i></tt></dd>
|
411
|
+
<dd><tt>HostnameLookups - <i>"on" to enable, "off" to disable reverse DNS lookups, or "double" to enable double-reverse DNS lookups</i></tt></dd>
|
412
|
+
<dd><tt>ServerAdmin - <i>The email address of the server administrator</i></tt></dd>
|
413
|
+
<dd><tt>ServerName - <i>The hostname and port of the server</i></tt></dd>
|
414
|
+
<dd><tt>ServerSignature - <i>En-/disable server signature (on|off|email)</i></tt></dd>
|
415
|
+
<dd><tt>ServerRoot - <i>Common directory of server-related files (logs, confs, etc.)</i></tt></dd>
|
416
|
+
<dd><tt>ErrorLog - <i>The filename of the error log</i></tt></dd>
|
417
|
+
<dd><tt>ServerAlias - <i>A name or names alternately used to access the server</i></tt></dd>
|
418
|
+
<dd><tt>ServerPath - <i>The pathname the server can be reached at</i></tt></dd>
|
419
|
+
<dd><tt>Timeout - <i>Timeout duration (sec)</i></tt></dd>
|
420
|
+
<dd><tt>IdentityCheck - <i>Enable identd (RFC 1413) user lookups - SLOW</i></tt></dd>
|
421
|
+
<dd><tt>ContentDigest - <i>whether or not to send a Content-MD5 header with each request</i></tt></dd>
|
422
|
+
<dd><tt>UseCanonicalName - <i>How to work out the ServerName : Port when constructing URLs</i></tt></dd>
|
423
|
+
<dd><tt>Include - <i>Name of the config file to be included</i></tt></dd>
|
424
|
+
<dd><tt>LogLevel - <i>Level of verbosity in error logging</i></tt></dd>
|
425
|
+
<dd><tt>NameVirtualHost - <i>A numeric IP address:port, or the name of a host</i></tt></dd>
|
426
|
+
<dd><tt>ServerTokens - <i>Determine tokens displayed in the Server: header - Min(imal), OS or Full</i></tt></dd>
|
427
|
+
<dd><tt>LimitRequestLine - <i>Limit on maximum size of an HTTP request line</i></tt></dd>
|
428
|
+
<dd><tt>LimitRequestFieldsize - <i>Limit on maximum size of an HTTP request header field</i></tt></dd>
|
429
|
+
<dd><tt>LimitRequestFields - <i>Limit (0 = unlimited) on max number of header fields in a request message</i></tt></dd>
|
430
|
+
<dd><tt>LimitRequestBody - <i>Limit (in bytes) on maximum size of request message body</i></tt></dd>
|
431
|
+
<dd><tt>LimitXMLRequestBody - <i>Limit (in bytes) on maximum size of an XML-based request body</i></tt></dd>
|
432
|
+
<dd><tt>RLimitCPU - <i>Soft/hard limits for max CPU usage in seconds</i></tt></dd>
|
433
|
+
<dd><tt>RLimitMEM - <i>Soft/hard limits for max memory usage per process</i></tt></dd>
|
434
|
+
<dd><tt>RLimitNPROC - <i>soft/hard limits for max number of processes per uid</i></tt></dd>
|
435
|
+
<dd><tt>ForceType - <i>a mime type that overrides other configured type</i></tt></dd>
|
436
|
+
<dd><tt>SetHandler - <i>a handler name that overrides any other configured handler</i></tt></dd>
|
437
|
+
<dd><tt>SetOutputFilter - <i>filter (or ; delimited list of filters) to be run on the request content</i></tt></dd>
|
438
|
+
<dd><tt>SetInputFilter - <i>filter (or ; delimited list of filters) to be run on the request body</i></tt></dd>
|
439
|
+
<dd><tt>AddOutputFilterByType - <i>output filter name followed by one or more content-types</i></tt></dd>
|
440
|
+
<dd><tt>PidFile - <i>A file for logging the server process ID</i></tt></dd>
|
441
|
+
<dd><tt>ScoreBoardFile - <i>A file for Apache to maintain runtime process management information</i></tt></dd>
|
442
|
+
<dd><tt>MaxRequestsPerChild - <i>Maximum number of requests a particular child serves before dying.</i></tt></dd>
|
443
|
+
<dd><tt>CoreDumpDirectory - <i>The location of the directory Apache changes to before dumping core</i></tt></dd>
|
444
|
+
<dt><strong>Current Configuration:</strong></dt>
|
445
|
+
<dd><tt>PidFile <i>logs/httpd.pid</i></tt></dd>
|
446
|
+
<dd><tt>Timeout <i>300</i></tt></dd>
|
447
|
+
<dd><tt>MaxRequestsPerChild <i>0</i></tt></dd>
|
448
|
+
<dd><tt>ServerAdmin <i>nd@perlig.de</i></tt></dd>
|
449
|
+
<dd><tt>ServerName <i>pub.perlig.de</i></tt></dd>
|
450
|
+
<dd><tt>UseCanonicalName <i>On</i></tt></dd>
|
451
|
+
<dd><tt>DocumentRoot <i>"C:/Programme/Apache Group/Apache2/htdocs"</i></tt></dd>
|
452
|
+
<dd><tt><Directory /></tt></dd>
|
453
|
+
<dd><tt> Options <i>FollowSymLinks</i></tt></dd>
|
454
|
+
<dd><tt> AllowOverride <i>None</i></tt></dd>
|
455
|
+
<dd><tt></Directory></tt></dd>
|
456
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/htdocs"></tt></dd>
|
457
|
+
<dd><tt> Options <i>Indexes FollowSymLinks</i></tt></dd>
|
458
|
+
<dd><tt> AllowOverride <i>None</i></tt></dd>
|
459
|
+
<dd><tt></Directory></tt></dd>
|
460
|
+
<dd><tt>AccessFileName <i>.htaccess</i></tt></dd>
|
461
|
+
<dd><tt>DefaultType <i>text/plain</i></tt></dd>
|
462
|
+
<dd><tt>HostnameLookups <i>Off</i></tt></dd>
|
463
|
+
<dd><tt>ErrorLog <i>logs/error.log</i></tt></dd>
|
464
|
+
<dd><tt>LogLevel <i>warn</i></tt></dd>
|
465
|
+
<dd><tt>ServerTokens <i>Full</i></tt></dd>
|
466
|
+
<dd><tt>ServerSignature <i>On</i></tt></dd>
|
467
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/icons"></tt></dd>
|
468
|
+
<dd><tt> Options <i>Indexes MultiViews</i></tt></dd>
|
469
|
+
<dd><tt> AllowOverride <i>None</i></tt></dd>
|
470
|
+
<dd><tt></Directory></tt></dd>
|
471
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/manual"></tt></dd>
|
472
|
+
<dd><tt> Options <i>Indexes FollowSymLinks MultiViews IncludesNoExec</i></tt></dd>
|
473
|
+
<dd><tt> AllowOverride <i>None</i></tt></dd>
|
474
|
+
<dd><tt></Directory></tt></dd>
|
475
|
+
<dd><tt><Directory "C:/Programme/Apache Group/Apache2/cgi-bin"></tt></dd>
|
476
|
+
<dd><tt> AllowOverride <i>None</i></tt></dd>
|
477
|
+
<dd><tt> Options <i>None</i></tt></dd>
|
478
|
+
<dd><tt></Directory></tt></dd>
|
479
|
+
<dd><tt>AddDefaultCharset <i>ISO-8859-1</i></tt></dd>
|
480
|
+
<dd><tt><Location /server-info></tt></dd>
|
481
|
+
<dd><tt> SetHandler <i>server-info</i></tt></dd>
|
482
|
+
<dd><tt></Location></tt></dd>
|
483
|
+
</dl><hr />
|
484
|
+
<address>Apache/2.0.44 (Win32) Server at pub.perlig.de Port 80</address>
|
485
|
+
<p>(Hinweis: dieses Dokument ist natürlich <em>nicht</em> echt!)</p>
|
486
|
+
</body></html>
|