[REBOL] About FastCGI
From: sqlab:gmx at: 2-Jul-2001 14:53
Hi
It seems, something went wrong with my former message, so once again.
As there were a few configurations described for fastcgi with Apache,
I will add my working configuration (Linux and Windows).
Windows:
FastCgiExternalServer "D:/Apache/mydocs/fastcgi-bin" -host localhost:15001
<Location /fastcgi-bin>
SetHandler fastcgi-script
</Location>
ExternalAppClass /fastcgi-bin -host localhost:15001
Unix:
Just replace the path after FastCgiExternalServer with your complete path
without hyphens to the non-existing location.
And don't forget to use getmodes this way;
cgi-data: get-modes fastcgi-conn 'cgi ; in your Rebol script.
AR