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>
20 lines
645 B
Text
20 lines
645 B
Text
#
|
|
# This is a sample snippet from Lighttpd's config file that is needed to
|
|
# run WebObjects FastCGI adaptor
|
|
#
|
|
|
|
fastcgi.server = ( "/cgi-bin/WebObjects" =>
|
|
( "WebObjects" => (
|
|
"socket" => "/tmp/woadaptor.sock",
|
|
"check-local" => "disable",
|
|
"bin-path" => "%%PREFIX%%/libexec/WebObjects-fcgi",
|
|
"bin-environment" => (
|
|
"WO_CONFIG_URL" => "http://localhost:1085",
|
|
"WO_ADAPTOR_INFO_USERNAME" => "userhere",
|
|
"WO_ADAPTOR_INFO_PASSWORD" => "passhere",
|
|
)
|
|
))
|
|
)
|
|
|
|
alias.url = ( "/WebObjects/" => "%%PREFIX%%/%%WODOCROOT%%/" )
|
|
$HTTP["url"] =~ "^/WebObjects($|/)" { dir-listing.activate = "disable" }
|