home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 March / PCWK0397.iso / novell / webserv3 / disk1 / web / samples / config / httpd.cfg < prev    next >
Text File  |  1996-05-02  |  2KB  |  51 lines

  1. # httpd.cfg
  2. # Please DO NOT use TAB charaters when editing this file.
  3. # This is the master configuration file for the web server.  It is located
  4. # in the config subdirectory of the server root directory.  Lines beginning
  5. # with '#' are treated as comments.  Comments and blank lines are ignored.
  6. # All other lines are treated as directives and values.  The values control
  7. # the behavior of the server.
  8. #
  9. # The default server root directory is sys:web, and can be overridden 
  10. # with the -d <directory> command line option.
  11. #
  12. # Path names in this file are relative to the server root directory.
  13.  
  14. # The 'Port' directive specifies which IP port the server will listen on.
  15. # The default port for HTTP servers is 80.
  16. Port 80
  17.  
  18. # The 'ServerAdmin' directive specifies the email address of the person 
  19. # responsible for this server.  This email address is given in responses
  20. # to errors due to server configuration
  21. # ServerAdmin you@yoursite.yourdomain
  22.  
  23. # The 'AdminPassword' directive is an MD5 hash of the actual password required
  24. # to pause and restart the server.  The current value is the MD5 hash of the
  25. # string 'novellweb'. 
  26. AdminPassword hJmfnZNeYT5zhGS1ZDu9nQ==
  27.  
  28. # The 'ErrorLog' and 'TransferLog' directives specify the location of the 
  29. # log files for errors and request handling.  These paths are relative 
  30. # to the server root directory.
  31. ErrorLog logs/error.log
  32. TransferLog logs/access.log
  33. #DebugLog logs/debug.log
  34.  
  35. # The 'AccessConfig' directive specifies the location of the access control
  36. # file.  This file contains directives that control the server's access
  37. # policies.  For more details look at the comments in access control file.
  38. AccessConfig   config/access.cfg
  39.  
  40. # The 'ResourceConfig' directive specifies the location of the resource
  41. # configuration file.  This file is used to ...
  42. ResourceConfig config/srm.cfg
  43.  
  44. # The 'TypesConfig' directive specifies the location of the type mapping file.
  45. # This file maps file extension to MIME types.  The types recognized by the
  46. # server are x-server-parsed-html and ...
  47. TypesConfig    config/mime.typ
  48. MaxThreads  16
  49.