On a wordpress blog hosted under Nginx and php-fpm, when adding new post, get 502 internal error.
1 | 2017/11/01 08:40:16 [error] 30159#30159: *74037 upstream sent too big header while reading response header from upstream, client: 35.195.113.110, server: www.hostonnet.com, request: "POST /wp-admin/post.php HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "hostonnet.com", referrer: "https://hostonnet.com/wp-admin/post-new.php?wp-post-new-reload=true" |
This is fixed by editing nginx config for the web site by adding
1 2 | fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; |
Here is the updated nginx config
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | server { listen 443; server_name www.blog.hostonnet.com blog.hostonnet.com; root /home/hostonnet/public_html/; index index.php; location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { expires max; log_not_found off; } ssl on; ssl_certificate /etc/ssl/blog.hostonnet.com.crt; ssl_certificate_key /etc/ssl/blog.hostonnet.com.key; } server { listen 80; server_name www.blog.hostonnet.com blog.hostonnet.com; return 301 https://blog.hostonnet.com$request_uri; } |