Redmine1.0.0 インストールでエラー「A key is required to write a cookie containing the session data」

A key is required to write a cookie containing the session data. Use config.action_controller.session = { :key => _myapp_session", :secret => "some secret phrase" } in config/environment.rb"

というエラーが発生。
つまり言うことを聞けばよいのかな?

このサイト参照にさせてもらいました。神!
http://hajimete-ruby.jugem.jp/?eid=27

config/environment.rbの
# config.action_controller.session_store = :active_record_store
を以下に変更
config.action_controller.session = { :key => "_hello_session", :secret => "30文字以上の文字列" }