View Single Post
Old 06-25-2003, 06:28 AM  
funkmaster
So Fucking Banned
 
Join Date: Sep 2001
Location: shell beach
Posts: 7,938
Quote:
Originally posted by Bucho
sounds like your httpd.conf needs a bit of fiddling - look me up at 4646141 if you dont feel at home in vi/pico/httpd.conf

re's

Bucho
yes ... do the following:

cd into new Apache directory
edit ./src/include/httpd.h
change #define HARD_SERVER_LIMIT 256
to #define HARD_SERVER_LIMIT 1024

run:

make clean
./configure
make
make install

edit your http.conf and do the following changes:

Timeout 30
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 10
MaxSpareServers 20
StartServers 50
MaxClients 1000
MaxRequestsPerChild 0

... then restart the apache webserver :

/usr/local/apache/bin/apachectl stop
/usr/local/apache/bin/apachectl start

note: apachectl can be in another location, you can find it by:

locate apachectl

... hope this helps ?
funkmaster is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote