Skip to content

Commit

Permalink
fix Lighttpd config
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Dec 4, 2011
1 parent 4106c1e commit fdd0adc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Plack/Handler/FCGI.pm
Expand Up @@ -332,7 +332,7 @@ To host the app in the root path, you're recommended to use lighttpd
fastcgi.server = ( "/" =>
((
"socket" => "/tmp/fcgi.sock",
"check-local" => "disable"
"check-local" => "disable",
"fix-root-scriptname" => "enable",
))
Expand All @@ -347,9 +347,9 @@ To mount in the non-root path over TCP:
fastcgi.server = ( "/foo" =>
((
"host" = "127.0.0.1"
"port" = "5000"
"check-local" => "disable"
"host" = "127.0.0.1",
"port" = "5000",
"check-local" => "disable",
))
It's recommended that your mount path does B<NOT> have the trailing
Expand Down

0 comments on commit fdd0adc

Please sign in to comment.