FastCGI support
#14993
Replies: 2 comments
|
FastCGI is a server-side protocol, but curl is entirely client-side. How would you envision such protocol support working?
|
0 replies
|
I understand the client-side argument. Just to explain where the request comes from (speaking under the control of @danrabbit): lately I was wanting to test a fresh php-fpm install, from the point of view of the server, without installing a webserver and configuring it. And so naively I thought curl would implement some basic fastcgi functionality, maybe something like |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Lately I've seen more projects use FastCGI protocol (aside from PHP using it for a while now). All major web servers/load balancers support it. It is a super fast binary protocol that can be used for non-secure communications behind a reverse proxy or on private networks. It would be useful for Curl to support FastCGI protocol on the client side.
All reactions