我收到了一个400 Bad Request请求头或cookie太大,从nginx与我的Rails应用程序。重新启动浏览器修复了这个问题。我只在我的cookie中存储了一个字符串id,所以它应该很小。
我在哪里可以找到nginx错误日志?我看了nano/opt/nginx/logs/error.log,但它没有任何相关内容。
我试着设置以下和没有运气:
location / {
large_client_header_buffers 4 32k;
proxy_buffer_size 32k;
}
字符串
nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
passenger_root /home/app/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19;
passenger_ruby /home/app/.rvm/wrappers/ruby-1.9.3-p392/ruby;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
client_max_body_size 20M;
server {
listen 80;
server_name localhost;
root /home/app/myapp/current/public;
passenger_enabled on;
#charset koi8-r;
#access_log logs/host.access.log main;
# location / {
# large_client_header_buffers 4 32k;
# proxy_buffer_size 32k;
# }
# location / {
# root html;
# index index.html index.htm;
# client_max_body_size 4M;
# client_body_buffer_size 128k;
# }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
型
这是我在Firebug中存储cookie的代码和cookie的屏幕截图。我使用Firebug检查存储的会话,我发现New Relic和jQuery也存储cookie;这可能是cookie大小超过的原因吗?
x1c 0d1x的数据
def current_company
return if current_user.nil?
session[:current_company_id] = current_user.companies.first.id if session[:current_company_id].blank?
@current_company ||= Company.find(session[:current_company_id])
end
型
6条答案
按热度按时间vxqlmq5t1#
这就是错误所显示的-
Request Header Or Cookie Too Large
。你的一个头很大,nginx拒绝了它。使用
large_client_header_buffers
是正确的。如果您查看文档,您会发现它仅在http
或server
上下文中有效。将其提升到服务器块,它将正常工作。字符串
顺便说一下,默认的缓冲区数量和大小是
4
和8k
,所以你的坏头必须是超过8192字节的那个。在你的例子中,所有那些cookie(合并组合成一个头)都超过了limit。那些mixpanel cookie特别大。cwxwcias2#
通过添加
字符串
nr7wwzry3#
关于上面的答案,但有
client_header_buffer_size
需要提到:字符串
sg24os4d4#
我得到的错误几乎每600请求网页抓取时.首先,假设代理服务器或远程Ngix限制.我已经试图删除所有的cookie和其他浏览器的解决方案,一般由相关职位谈,但没有运气.远程服务器不在我的控制.
在我的例子中,我犯了一个错误,一次又一次地向httpClient对象添加新的头。在定义了一个全局httpclient对象之后,添加了一次头,问题就不会再出现了。这是一个小错误,但不幸的是,我们没有试图理解问题,而是跳到了stackoverflow:)有时候,我们应该尝试自己理解问题。
jm2pwxwz5#
在我的情况下(Cloud Foundry / NGiNX buildpack),原因是指令
proxy_set_header Host ...
,删除这行后,nginx变得稳定:字符串
olqngx596#
在我的例子中,我通过清除网站的该高速缓存解决了这个问题。其中一个cookie太大,导致了这个问题。