Re: Duplicated response body with fastcgi

2017-07-15 Thread Etienne Robillard
I fixed this issue. I found that uWSGI is a far better choices than FastCGI for serving my Django app with nginx. :) Cheers, E Le 2017-07-14 à 08:32, Etienne Robillard a écrit : How can one debug the upstream FastCGI response from nginx? Le 2017-07-13 à 10:25, Etienne Robillard a écrit :

Re: Duplicated response body with fastcgi

2017-07-14 Thread Etienne Robillard
How can one debug the upstream FastCGI response from nginx? Le 2017-07-13 à 10:25, Etienne Robillard a écrit : Hi, I'm trying to setup a Django app with nginx using fastcgi. Here's my config: # configuration file /etc/nginx/nginx.conf: user www-data; worker_processes 4; pid /run/nginx.pid;

Duplicated response body with fastcgi

2017-07-13 Thread Etienne Robillard
Hi, I'm trying to setup a Django app with nginx using fastcgi. Here's my config: # configuration file /etc/nginx/nginx.conf: user www-data; worker_processes 4; pid /run/nginx.pid; events { worker_connections 512; multi_accept on; use epoll; } http { ## # Basic Settings