shared hosting setup

#1
I'm running a quad with 4GB ram... my current setup:

Code:
max connections: 55
PHP_LSAPI_MAX_REQUESTS=17500
PHP_LSAPI_CHILDREN=55
LSAPI_MAX_IDLE_CHILDREN=1
LSAPI_MAX_IDLE=10
Initial Request Timeout (secs): 30
Connection Keepalive Timeout: 10
Run On Start Up: yes
Auto Start: yes
Persistent Connection: yes

anything i could improve on?
 

mistwang

LiteSpeed Staff
#2
If you using PHP suEXEC,

LSAPI_MAX_IDLE_CHILDREN=1
LSAPI_MAX_IDLE=10
have no effect.
Instead, should set "Max Idle Time" to "10" seconds.
Initial Request Timeout can be set longer if user has difficulty to process a script takes long time to finish.

Connection Keepalive Timeout should be -1 to keep the connection alive as long as PHP process is alive.
 
Top