abyss.conf 1.7 KB

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