home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / httpd_source_1.3.tar.Z / httpd_source_1.3.tar / httpd_1.3 / conf / httpd.conf-dist < prev    next >
Text File  |  1994-03-11  |  2KB  |  64 lines

  1. # This is the main server configuration file. It is best to 
  2. # leave the directives in this file in the order they are in, or
  3. # things may not go the way you'd like. See URL http://hoohoo.ncsa.uiuc.edu/
  4. # for instructions.
  5.  
  6. # Do NOT simply read the instructions in here without understanding
  7. # what they do, if you are unsure consult the online docs. You have been
  8. # warned.  
  9.  
  10. # Rob McCool (comments, questions to httpd@ncsa.uiuc.edu)
  11.  
  12. # ServerType is either inetd, or standalone.
  13.  
  14. ServerType standalone
  15.  
  16. # If you are running from inetd, go to "ServerAdmin".
  17.  
  18. # Port: The port the standalone listens to. For ports < 1023, you will
  19. # need httpd to be run as root initially.
  20.  
  21. Port 80
  22.  
  23. # If you wish httpd to run as a different user or group, you must run
  24. # httpd as root initially and it will switch.  
  25.  
  26. # User/Group: The name (or #number) of the user/group to run httpd as.
  27.  
  28. User nobody
  29. Group #-1
  30.  
  31. # ServerAdmin: Your address, where problems with the server should be
  32. # e-mailed.
  33.  
  34. ServerAdmin you@your.address
  35.  
  36. # ServerRoot: The directory the server's config, error, and log files
  37. # are kept in
  38.  
  39. ServerRoot /usr/local/etc/httpd
  40.  
  41. # ErrorLog: The location of the error log file. If this does not start
  42. # with /, ServerRoot is prepended to it.
  43.  
  44. ErrorLog logs/error_log
  45.  
  46. # TransferLog: The location of the transfer log file. If this does not
  47. # start with /, ServerRoot is prepended to it.
  48.  
  49. TransferLog logs/access_log
  50.  
  51. # PidFile: The file the server should log its pid to
  52. PidFile logs/httpd.pid
  53.  
  54. # ServerName allows you to set a host name which is sent back to clients for
  55. # your server if it's different than the one the program would get (i.e. use
  56. # "www" instead of the host's real name).
  57. #
  58. # Note: You cannot just invent host names and hope they work. The name you 
  59. # define here must be a valid DNS name for your host. If you don't understand
  60. # this, ask your network administrator.
  61.  
  62. #ServerName new.host.name
  63.  
  64.