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 ?