[Gambas-user] Webserver Lighttpd - FastCGI and Gambas

Hans Lehmann hans at gambas-buch.de
Sat Dec 19 15:45:17 CET 2020


Hello.

I use the Lighttpd web server (version 1.4.55) for my web projects. 
Following the recommendation in 
https://sourceforge.net/p/gambas/mailman/message/35668835/, I have 
configured the CGI module "mod_cgi".

...
# This tells that all executable files are cgi scripts,
# and just them
cgi.execute-x-only = "enable"
cgi.assign = ( "" => "" )

Also, the module "mod_fastcgi" was configured and enabled:

fastcgi.server = ( ".php" => ((
                  "binpath" => "/usr/bin/phpcgi",
                  "socket" => "/tmp/php.sock"
                  )))

Now the question: With this configuration, do the web scripts (*.gbw) or 
web applications (*.gambas) of Gambas also run in FastCGI mode?
If this is NOT the case, I would like to know how to configure the 
Lighttpd web server for FastCGI mode as well.

With kind regards

Hans


More information about the User mailing list