Web Extensions and Applications Using FastCGI
By Scott Dybiec and Philip Rousselle, June 01, 1997
By implementing a software layer that receives control from a web server, OpenMarket's FastCGI protocol addresses many of the shortcomings of both conventional CGI and server APIs. Our authors discuss the FastCGI protocol, describe the OpenMarket C programming library for FastCGI, and develop example applications using the OpenMarket library.
Dr. Dobb's Journal June 1997: Web Extensions and Applications Using FastCGI
Web Extensions and Applications Using FastCGI
By Scott Dybiec and Philip Rousselle
Dr. Dobb's Journal June 1997
(a)
AppClass /server-root/auth/authftp-cache.fcg -initial-env FTP_HOST=plato
AddFastCgiAuth auth-keyword /server-root/auth/authftp-cache.fcg
(b)
<Directory /server-root/secret-docs>
AuthType Basic
AuthName realm
AuthFastCgi auth-keyword
<Limit GET>
require valid-user
</Limit>
</Directory>
Example 3: Enabling a FastCGI Authorizer.
Copyright © 1997, Dr. Dobb's Journal