ultimatepp/uppdev/ScgiHello/lighttpd.conf
cxl 3cd394812c Merge continued
git-svn-id: svn://ultimatepp.org/upp/trunk@10263 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-10-04 08:34:39 +00:00

27 lines
558 B
Text

# Example LigHTTPD server configuration
#
# Run with: lighttpd -D -f lighttpd.conf
#
# You must also manually execute ScgiHello
#
server.document-root = "./htdocs"
server.port = 3000
server.modules = ( "mod_scgi" )
mimetype.assign = (
".html" => "text/html",
".txt" => "text/plain",
".jpg" => "image/jpeg",
".png" => "image/png"
)
index-file.names = ( "index.html" )
scgi.server= ( "/scgi/" =>
(( "host" => "127.0.0.1",
"port" => 8787,
"check-local" => "disable",
"docroot" => "/" # remote server may use it's own docroot
))
)