You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't a direct issue to kcgi but I think it could be valuable to add some information on how to use FastCGI with kcgi based programs on the official documentation.
kcgi makes uses of PATH_INFO which seems... to be poorly implemented in most web servers.
Lighttpd
For the moment, I was unable to get fastcgi working with my kcgi program. I've tried the following but the program never had PATH_INFO correctly set:
That would be perfect for a tutorial! All it takes is copying a tutorial file and adding it to the Makefile. make www and it will generate and appear in the local index.html.
Hello,
This isn't a direct issue to kcgi but I think it could be valuable to add some information on how to use FastCGI with kcgi based programs on the official documentation.
kcgi makes uses of PATH_INFO which seems... to be poorly implemented in most web servers.
Lighttpd
For the moment, I was unable to get fastcgi working with my kcgi program. I've tried the following but the program never had PATH_INFO correctly set:
Nginx
With nginx it works a bit better but there are not many documentation regarding the PATH_INFO handling.
I needed to add manually
fastcgi_param PATH_INFO $uri
but not even sure if this is appropriate.What do you think about adding a specific deployment page with those webservers?
The text was updated successfully, but these errors were encountered: