|
You need to ask your host to manually add a FastCGI application for each of your FCGI application in LiteSpeed web console, then add a script handler for you. like
your hello app is called "hello_fcgi", the script handler suffix is "hello_fcgi".
Then you use directive.
<Files hello.fcgi>
ForceType application/x-httpd-hello_fcgi
</Files>
You need to do the same for each FCGI application.
|