sharulhafiz
Basic Pleskian
I've tried multiple fastcgi config but all of them failed to handle my server traffic. After some time, the server will start sending 503 bad gateway error. Temporary solution is to restart httpd.
I've made some modification but not sure if it solve the problems since this modification was made after off-peak time (after office hour). Here is my current setting:
Can anyone could share their config that works? This server only install Wordpress, about 50 of them, multisite enable, WP Super Cache enabled for big network.
I've made some modification but not sure if it solve the problems since this modification was made after off-peak time (after office hour). Here is my current setting:
Code:
LoadModule fcgid_module modules/mod_fcgid.so
<IfModule mod_fcgid.c>
<IfModule !mod_fastcgi.c>
AddHandler fcgid-script fcg fcgi fpl
</IfModule>
FcgidIPCDir /var/run/mod_fcgid/sock
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
FcgidIdleTimeout 5
FcgidProcessLifeTime 30
FcgidMaxProcesses 300
FcgidMinProcessesPerClass 0
FcgidMaxProcessesPerClass 50
FcgidConnectTimeout 30
FcgidIOTimeout 45
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 30
</IfModule>
Can anyone could share their config that works? This server only install Wordpress, about 50 of them, multisite enable, WP Super Cache enabled for big network.