five
New Pleskian
Hello everybody,
we receive errors during working with WordPress installations on our server:
84381#0: *2908 upstream sent too big header while reading response header from upstream
Sometimes when updating plugins, but also when just clicking around.
An example out of our logfile is attached.
This is our modified "/etc/sw-cp-server/config" file:
Anybody has an idea what to do to get this thing working fine?
we receive errors during working with WordPress installations on our server:
84381#0: *2908 upstream sent too big header while reading response header from upstream
Sometimes when updating plugins, but also when just clicking around.
An example out of our logfile is attached.
This is our modified "/etc/sw-cp-server/config" file:
Code:
worker_processes 1;
events {
worker_connections 65536;
use epoll;
multi_accept on;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'
"'$fastcgi_script_name' '$fastcgi_path_info' '$document_root'";
sendfile on;
reset_timedout_connection on;
#keepalive_timeout 0;
keepalive_timeout 65;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
fastcgi_max_temp_file_size 0;
fastcgi_buffers 128 2048k;
fastcgi_buffer_size 2048k;
fastcgi_read_timeout 600;
fastcgi_send_timeout 600;
client_body_buffer_size 128k;
client_max_body_size 2048m;
client_header_buffer_size 1k;
large_client_header_buffers 4 4k;
output_buffers 1 32k;
postpone_output 1460;
error_page 497 https://$hostname:$server_port$request_uri;
include /etc/sw-cp-server/conf.d/*.conf;
}
Anybody has an idea what to do to get this thing working fine?
- Is changing the nginx proxy buffer size a solution?