debianでpound

debian sid の pound(2.0-1) で mongrel_cluster を動かそうとしたけどうまくいかない。
/etc/pound/pound.cfg で文字列を""で囲んだりエラーが出る設定をコメントアウトしたりで何とか動いたものの「MONITOR: worker exited on signal 11, restarting...」という訳分からないエラーが発生。
結局 http://www.anarchogeek.com/articles/page/2 を見てSESSIONの設定を追加したら動いた。
以下動いた設定ファイル

## Minimal sample pound.cfg
##
## see pound(8) for details


######################################################################
## global options:

User            "www-data"
Group           "www-data"
#RootJail       /chroot/pound

## allow PUT and DELETE also (by default only GET, POST and HEAD)?:
#ExtendedHTTP   "0"

#WebDAV         "0"

## Logging: (goes to syslog by default)
##      0       no logging
##      1       normal
##      2       extended
##      3       Apache-style (common log format)
LogLevel        1

## check backend every X secs:
Alive           30

## use hardware-accelleration card supported by openssl(1):
#SSLEngine      


######################################################################
## listen, redirect and ... to:

## redirect all requests on port 8888 ("ListenHTTP") to the local webserver see "UrlGroup" bel
ow):
#ListenHTTP 127.0.0.1,8080

ListenHTTP
  Address 0.0.0.0
  Port    8888
  Service
    BackEnd
      Address 127.0.0.1
      Port    3030
    End
    BackEnd
      Address 127.0.0.1
      Port    3031
    End
    BackEnd
      Address 127.0.0.1
      Port    3032
    End
    Session
      Type    BASIC
      TTL     300
    END
  End
End

##
#UrlGroup ".*"
#BackEnd 127.0.0.1,80,1
#EndGroup