在Phusion Passenger中启用粘性会话会在下一个表单中添加set-cooke
标题:
Set-Cookie: _passenger_route=598708409; Path=/
问题:
Path
?httpOnly
选项?secure
选项?答案 0 :(得分:1)
这是设置Cookie的relevant code。
Path
由baseURI httpOnly
未设置for this reason:
// Note that we do NOT set HttpOnly. If we set that flag then Chrome
// doesn't send cookies over WebSocket handshakes. Confirmed on Chrome 25.
答案 1 :(得分:1)
路径设置为passenger_base_uri
的值
Passenger未设置httpOnly
,因为它会停止通过Chrome上的websockets发送Cookie(最后在Chrome 25上确认)。
要设置httpOnly
,secure
和其他选项,可能会使用来自header_filter_by_lua_block
的{{1}}之类的内容(这包含在apt打包的nginx中)由Phusion提供,并且可以安装为dynamic module否则)。