实际上手工在obj.conf文件中添加
Service type="magnus-internal/cgi" fn="send-cgi"
即可。
在Netscape Enterprise Server上执行PHP程序需要一plugin程序模块,在启动Netscape Enterprise Server时
会启动该模块,当客户端请求PHP程序时该模块会告诉Netscape Enterprise Server,这是个magnus-internal/cgi
类型的文件,因此该PHP程序就被执行。
为实现以上功能,在obj.conf文件中加入
Init fn="load-modules" funcs="redirect-cgi" \
shlib="/opt/local/suitespot-3.0/plugins/redirect/redirect_cgi.so" NativeThread="no"
在启动Netscape Enterprise Server时启动该模块。
和
ObjectType fn="redirect-cgi" cgi_path="/opt/local/www/cgi-bin/php" type="magnus-internal/php"
通过先前启动的plugin模块告诉Netscape Enterprise Server,类型为magnus-internal/php的文件,
需通过/opt/local/www/cgi-bin/php来解释执行。
在mime.types中加入一行
magnus-internal/php php3,phtml
后,Netscape Enterprise Server就知道如何处理后缀名为php3,phtml的文件了。
二、具体实现步骤:
……