home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / conf / highperformance.conf-dist < prev    next >
Text File  |  2001-01-21  |  2KB  |  53 lines

  1. # Ha, you're reading this config file looking for the easy way out!
  2. # "how do I make my apache server go really really fast??"
  3. # Well you could start by reading the htdocs/manual/misc/perf-tuning.html
  4. # page.  But, we'll give you a head start.
  5. #
  6. # This config file is small, it is probably not what you'd expect on a
  7. # full featured internet webserver with multiple users.  But it's
  8. # probably a good starting point for any folks interested in testing
  9. # performance.
  10. #
  11. # To run this config you'll need to use something like:
  12. #     httpd -f c:/apache/conf/highperformance.conf
  13.  
  14. Port 80
  15. ServerRoot c:/apache
  16. DocumentRoot c:/apache/htdocs
  17. MaxClients 150
  18. StartServers 5
  19. MinSpareServers 5
  20. MaxSpareServers 10
  21. # Assume no memory leaks at all
  22. MaxRequestsPerChild 0
  23.  
  24. # this is a True Config File
  25. # see http://www.apache.org/info/three-config-files.html
  26. ResourceConfig /dev/null
  27. AccessConfig /dev/null
  28.  
  29. # it's always nice to know the server has started
  30. ErrorLog logs/error_log
  31.  
  32. # Some benchmarks require logging, which is a good requirement.  Uncomment
  33. # this if you need logging.
  34. #TransferLog logs/access_log
  35.  
  36. # Disable symlink protection and htaccess files, they chew far too much.
  37. <Directory />
  38.     AllowOverride none
  39.     Options FollowSymLinks
  40.     # If this was a real internet server you'd probably want to
  41.     # uncomment these:
  42.     #order deny,allow
  43.     #deny from all
  44. </Directory>
  45.  
  46. # If this was a real internet server you'd probably want to uncomment this:
  47. #<Directory "c:/apache/htdocs">
  48. #    order allow,deny
  49. #    allow from all
  50. #</Directory>
  51.  
  52. # OK that's enough hints.  Read the documentation if you want more.
  53.