iTP Secure WebServer System Administrator's Guide (iTPWebSvr 5.1+)

Configuring the iTP Secure WebServer
iTP Secure WebServer System Administrators Guide522659-001
7-5
The httpd Configuration File
#
#
# Configure Resource Locator attributes
#
set rmt /bin/rmt/rmt.pway
if { [file exists $root$rmt]} {
Filemap $rmt $root$rmt
Server $root$rmt {
CWD $root/bin/rmt
eval $DefaultServerAttributes
}
RmtServer $rmt
}
################################################################
#
#
# End Resource Locator’s configuration
#
#
# Bring in any SSL/PCT related configuration information.
#
if { [file exists $root/conf/httpd.websafe.config] } {
source $root/conf/httpd.websafe.config
} elseif { [file exists $root/conf/httpd.stl.config] } {
source $root/conf/httpd.stl.config
}
#
# The Accept directive configures the server to accept HTTP
# connections on a specified address and port. If no port is
# specified, the default port used is 80. Note - if you use
# a port below 1024, you must start the server within the
# SUPER group.
#
Accept -transport <TRANSPORT_INFO> -port <UNSECURE_PORT_INFO>
###############################################################
#
# Custom configuration can be done here.
#
#
Example 7-1. Sample httpd.config File (page 4 of 5)