upstream sent too big header while reading response header from upstream docker ubuntu fastcgi -


upstream sent big header while reading response header upstream: "fastcgi://unix:/var/run/php-fpm.sock:"

 server {   ...   ...   location ~ '\.php$|^/update.php' {     fastcgi_split_path_info ^(.+?\.php)(|/.*)$;     #note: should have "cgi.fix_pathinfo = 0;" in php.ini     #fastcgi_pass 127.0.0.1:7777;     fastcgi_pass unix:/var/run/php-fpm.sock;     fastcgi_index index.php;     include fastcgi_params;     fastcgi_param script_filename $document_root$fastcgi_script_name;     fastcgi_param path_info $fastcgi_path_info;     fastcgi_intercept_errors on;     fastcgi_buffer_size 32k;     fastcgi_buffers 16 16k;     fastcgi_busy_buffers_size 256k;     fastcgi_read_timeout 180;     fastcgi_send_timeout 180;    } } http {   proxy_buffering off; } 

i getting on local docker. i've tried different values buffers , buffers size. there suggestions on how counter this?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -