Rails app。ブラウザを再起動すると問題が解決します。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のサイズを超える理由でしょうか?
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
それはまさにエラーが言うことです-Request Header Or Cookie Too Large
。ヘッダーの1つは非常に大きく、nginxはそれを拒否しています。
あなたはlarge_client_header_buffers
で正しい軌道に乗っています。 ドキュメントを確認 の場合、http
またはserver
コンテキストでのみ有効であることがわかります。サーバーブロックにそれをバンプし、それが動作します。
server {
# ...
large_client_header_buffers 4 32k;
# ...
}
ところで、デフォルトのバッファ番号とサイズは4
と8k
であるため、不良ヘッダーは8192バイトを超えるヘッダーである必要があります。あなたの場合、これらのすべてのCookie(1つのヘッダーに結合される)は、 limit をはるかに超えています。特に、これらのミックスパネルCookieは非常に大きくなります。
追加することで修正
server {
...
large_client_header_buffers 4 16k;
...
}
上記の回答に関してですが、client_header_buffer_size
に言及する必要があります。
http {
...
client_body_buffer_size 32k;
client_header_buffer_size 8k;
large_client_header_buffers 8 64k;
...
}
私の場合(Cloud Foundry/NGiNX buildpack)、理由はディレクティブproxy_set_header Host ...
、この行を削除した後、nginxは安定しました:
http {
server {
location /your-context/ {
# remove it: # proxy_set_header Host myapp.mycfdomain.cloud;
}
}
}