]> granicus.if.org Git - apache/commitdiff
removed docs/conf/highperformance.conf (re-named to highperformance-std.conf)
authorGreg Ames <gregames@apache.org>
Thu, 25 Jan 2001 19:51:30 +0000 (19:51 +0000)
committerGreg Ames <gregames@apache.org>
Thu, 25 Jan 2001 19:51:30 +0000 (19:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87830 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/highperformance.conf [deleted file]

diff --git a/docs/conf/highperformance.conf b/docs/conf/highperformance.conf
deleted file mode 100644 (file)
index b396373..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-# Ha, you're reading this config file looking for the easy way out!
-# "how do I make my apache server go really really fast??"
-# Well you could start by reading the htdocs/manual/misc/perf-tuning.html
-# page.  But, we'll give you a head start.
-#
-# This config file is small, it is probably not what you'd expect on a
-# full featured internet webserver with multiple users.  But it's
-# probably a good starting point for any folks interested in testing
-# performance.
-#
-# To run this config you'll need to use something like:
-#     httpd -f @@ServerRoot@@/conf/highperformance.conf
-
-Port 80
-ServerRoot @@ServerRoot@@
-DocumentRoot @@ServerRoot@@/htdocs
-
-<IfModule prefork.c>
-MaxClients       8 
-StartServers     5
-MinSpareServers  5
-MaxSpareServers 10
-</IfModule>
-
-<IfModule mpmt_pthread.c>
-MaxClients       8
-StartServers     1
-MinSpareThreads  5
-MaxSpareThreads 10
-ThreadsPerChild 20
-</IfModule>
-
-# Assume no memory leaks at all
-MaxRequestsPerChild 0
-
-# it's always nice to know the server has started
-ErrorLog logs/error_log
-
-# Some benchmarks require logging, which is a good requirement.  Uncomment
-# this if you need logging.
-#TransferLog logs/access_log
-
-# Disable symlink protection and htaccess files, they chew far too much.
-<Directory />
-    AllowOverride none
-    Options FollowSymLinks
-    # If this was a real internet server you'd probably want to
-    # uncomment these:
-    #order deny,allow
-    #deny from all
-</Directory>
-
-# If this was a real internet server you'd probably want to uncomment this:
-#<Directory "@@ServerRoot@@/htdocs">
-#    order allow,deny
-#    allow from all
-#</Directory>
-
-# OK that's enough hints.  Read the documentation if you want more.