External PHP-FPM

#1
Hi,

I;ve build PHP-FPM listen on 127.0.0.1 :

extprocessor phpfpm {
type fcgi
address 127.0.0.1:9001
maxConns 1000
initTimeout 10
retryTimeout 10
persistConn 1
pcKeepAliveTimeout 60
respBuffer 0
autoStart 1
path /usr/bin/lsphp
extUser daemon
extGroup daemon
memSoftLimit 4096M
memHardLimit 4096M
procSoftLimit 2000
procHardLimit 2000
}

scripthandler {
add fcgi:phpfpm php
}


but cant display my website content. Its only show error page 503.


503
Service Unavailable
The server is temporarily busy, try again later!



Please help,

Thanks
 
Top