~ubuntu-branches/ubuntu/natty/xmlrpc-c/natty

« back to all changes in this revision

Viewing changes to lib/abyss/example/conf/abyss.conf

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-01-06 18:56:02 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110106185602-09og2x3suqlzbf6s
Tags: 1.16.32-0ubuntu1
* New upstream version (stable release). LP: #659591.
  - No unresolved symbols in the shared libraries. LP: #690779.
  - Builds with --no-add-needed and --as-needed.
* Rename shared library packages.
* Add symbols files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 8080
 
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 conf/abyss_root
 
23
 
 
24
# The Server Root (Win32 systems style)
 
25
# ServerRoot G:\XML\xmlrpc-c-0.9.5\conf\abyss_root
 
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