iTP Secure WebServer System Administrator's Guide (Version 7.0)

Configuration Directives
iTP Secure WebServer System Administrator’s Guide523346-012
A-24
HTTPTraceMethodEnable
HTTPTraceMethodEnable
Syntax
HTTPTraceMethodEnable { yes | no }
Description
Use the HTTPTraceMethodEnable directive to disable the HTTP TRACE method in
iTP WebServer. When the directive is set to no, an HTTP request containing the
TRACE method results in a "501, Not Implemented" HTTP response.
Default
HTTPTraceMethodEnable yes
Example
HTTPTraceMethodEnable no
IndexFile
Syntax
IndexFile filename1 filename2 ...
Description
Use the IndexFile directive to specify the file the server is to return whenever a URL
refers to a directory instead of to a file. Typically the IndexFile directive is set to a
file that contains an index or other description of the contents of the directory being
referred to by the URL.
For example, if your server receives the URL
http://www.myserver.com/foo/
and that the server configuration file (httpd.config) specifies
IndexFile index.html welcome.html
in response to this URL, which does not specify a particular file in directory /foo, the
server will look for a file named index.html in /foo, as if the full URL were
http://my.server.com/foo/index.html
If this file does not exist, the server will try to find in /foo the next file specified in the
IndexFile directive, as if the full URL were now
http://my.server.com/foo/welcome.html