我试图从 Redis 中获取价值。这样我就可以通过变量回显它。这就是我使用 eval 块的原因。但由于某种原因,我收到了错误。
重新加载它们时,我没有收到任何配置错误。
以下是我尝试加载页面后出现的错误 (nginx error.log):
2198 2013/05/15 19:46:00 [info] 18255#0: *22 client timed out (110: Connection timed out) while reading client request line, client: [...] server: [...]
2199 2013/05/15 19:46:00 [info] 18255#0: *23 client timed out (110: Connection timed out) while reading client request line, client: [...], server: [...]
2200 2013/05/15 19:47:40 [info] 18345#0: *28 client timed out (110: Connection timed out) while reading client request line, client: [...], server: [...]
我的配置:
location = /session {
eval $session {
set $laravel "laravel:";
set $redis_key $laravel$cookie_session;
redis_pass [...]:6379;
error_page 404 502 504 = @fallback;
}
echo $cookie_session;
echo ' - ';
echo $session;
}
location @fallback {
echo 'Error!';
}
这是我在谷歌浏览器中得到的:
No data received
Unable to load the webpage because the server sent no data.
问题与我使用的 NGiNX-Eval-Module 版本有关。
我下载了文档中提供的版本。它们是 GitHub 帐户中的更新版本。
此外,我还必须注释掉 ngx_http_eval_module.c 文件中的一些代码:640:39(仅 *pclcf)、631:32(仅 *ecf)、675 和 675。
更多信息:https ://github.com/vkholodkov/nginx-eval-module/issues/10