initial load of upstream version 1.06.32
[xmlrpc-c] / lib / abyss / conf / abyss.conf
1 # ABYSS Web Server configuration file
2 # (C) Moez Mahfoudh - 2000
3
4 # Cases in option names are ignored, 
5 # that means that PORT=port=PoRT=..
6
7 # When writing paths, do not worry about / or \ use.
8 # ABYSS will substitute / with \ on Win32 systems.
9
10 # Options which are system specific (such as User) are
11 # ignored on systems which do not handle them.
12
13 # The Port option tells the server on which TCP port to listen.
14 # default is 80
15 Port 8000
16
17 # The name or #number of the user to run the server as if it is 
18 # launched as root (UNIX specific)
19 User nobody
20
21 # The Server Root (UNIX systems style)
22 ServerRoot /home/mahfoudh/abyss
23
24 # The Server Root (Win32 systems style)
25 # ServerRoot c:\abyss
26
27 # The Path option specifies the web files path.
28 Path htdocs
29
30 # The Default option contains the name of the files the server should
31 # look for when only a path is given (e.g. http://myserver/info/).
32 Default index.html index.htm INDEX.HTM INDEX.HTML
33
34 # The KeepAlive option is used to set the maximum number of requests
35 # served using the same persistent connection.
36 KeepAlive 10
37
38 # The TimeOut option tells the server how much seconds to wait for
39 # an idle connection before closing it.
40 TimeOut 10
41
42 # The MimeTypes option specifies the location of the file
43 # containing the mapping of MIME types and files extensions
44 MimeTypes conf/mime.types
45
46 # The path of the log file
47 LogFile log/access.log
48
49 # The file where the pid of the server is logged (UNIX specific)
50 PidFile log/abyss.pid
51
52 # If AdvertiseServer if set to no, then no server field would be
53 # appended to the responses. This is the way to make the server
54 # identity unknown to some malicious people which can profit from
55 # well known security holes in the software to crash it.
56 AdvertiseServer yes