e6b6e3491e
This is a bundle of several ports covering many typical requirements for building an Apple WebObjects deployment environment. Each port is or has a dependancy with some other port in the bundle, and have therefore been lodged collectively. www/woadaptor WOAdaptor is a collection of WebObjects WebServer Adaptors. These include an Apache Module, CGI and FastCGI adaptors This is a subproject of Project Wonder and is an effort to pool enhancements and bug fixes for Apple's open source codebase. WWW: http://wonder.sourceforge.net/WOAdaptor.html PR: ports/117299 Submitted by: Quinton Dolan <q@onthenet.com.au>
16 lines
555 B
Text
16 lines
555 B
Text
#
|
|
# This is a sample snippet from Apache's httpd.conf that is needed to
|
|
# run WebObjects FastCGI adaptor
|
|
#
|
|
# (Make sure the Alias line below appears before any alias for "/cgi-bin/"
|
|
#
|
|
|
|
Alias /cgi-bin/WebObjects %%PREFIX%%/libexec/WebObjects-fcgi
|
|
|
|
<IfModule mod_fastcgi.c>
|
|
FastCgiIpcDir /var/run/webobjects
|
|
FastCgiServer %%PREFIX%%/libexec/WebObjects-fcgi -processes 10 \
|
|
-initial-env WO_CONFIG_URL=http://localhost:1085 \
|
|
-initial-env WO_ADAPTOR_INFO_USERNAME=userhere \
|
|
-initial-env WO_ADAPTOR_INFO_PASSWORD=passhere
|
|
</IfModule>
|