≪ 途中省略 ≫
######################################################
# Special Files
#
#The following line defines the default file type if a suffix match isn't found.
#The syntax is: DEFAULT <default transfer type> <default MIME type>
DEFAULT TEXT text/html
#The following lines specify where to find HTML files for error messages, the
#default home (or index) page, the name of the log file, and the message
#returned for security violations. Any of these three file directives point to a
#HTML document, script, or CGI application.
#
#NOTE!!! INDEX must be a simple file name, not a path like the other files.
INDEX Default.html
↓※インデックスファイルの指定
INDEX index.html
ERROR :Error.html
NOACCESS :NoAccess.html
#If the LOG file directive is missing or commented out, no logging will occur.
LOG :MacHTTP.log
####################################################
# The following commands can be used to adjust MacHTTP's behavior and
# performance. Most of them can be adjusted via AppleScript and AppleEvents
# as well.
#A single copy of MacHTTP only listens on a single port for multiple
#connections. The HTTP standard port is 80. Users may define any port
#they'd like to listen on, but internet standards say that ports
#numbered 1024 and below are reserved for "Well known services" that
#are pre-defined. That means if you change MacHTTP's port from 80,
#you should pick a number greater than 1024 to avoid conflicting with
#things like telnet, gopher, ftp, nfs, pop, etc. that all have ports
#assigned below 1024.
PORT 80※ポート番号の指定(通常はこのまま)
#Sets the timeout for inactive connections to 60 seconds
TIMEOUT 60
#Comment out this line to disable Thread Manager use. Uncommenting
# this line has no effect if the Thread Manager isn't installed as part of
# the server's operating system. (i.e., pre-System 7.5
≪ 以下省略 ≫