Hi,
I'm trying to run uWSGI 2.0.15 with PyPy 5.9 to bootstrap a native
django app.
Here's my uwsgi.ini :
[uwsgi]
chdir=/home/erob/src/django-hotsauce-0.9/tests/benchmarks/lib/pypy/django_sqlite
module=benchmark.wsgi:application
master=True
pidfile=/tmp/uwsgi-master.pid
vacuum=True
max-request
I've digged the problem a little deeper.
My uwsgi.ini now looks like this:
[uwsgi]
plugins=pypy
chdir=/home/erob/src/django-hotsauce-0.9/tests/benchmarks/lib/pypy/django_sqlite
master=True
pidfile=/tmp/uwsgi-master.pid
vacuum=True
max-requests=5000
socket=127.0.0.1:8000
pypy-home=/usr/local/pypy
Hello,
> [uwsgi]
> ...
> socket=127.0.0.1:8000
Is there any web server in the front of the uwsgi? If this is nginx,
are you sure you are using "uwsgi_pass" instead of, for example,
"proxy_pass"?
Could you replace socket= with http-socket= and query it with curl, like that?
curl -v http://127.0
Hi Krzysztof,
Le 2018-02-08 à 15:28, Krzysztof Warzecha a écrit :
Hello,
[uwsgi]
...
socket=127.0.0.1:8000
Is there any web server in the front of the uwsgi? If this is nginx,
are you sure you are using "uwsgi_pass" instead of, for example,
"proxy_pass"?
Yes. I configured nginx like this:
OK then. I have few more debugging tips, but no solution yet. Let's
see what nginx is sending to uwsgi. Please configure uwsgi with:
[uwsgi]
socket=127.0.0.1:8000
And please use strace (strace -p $PID -p $PID_2 ... -p $PID_N -vvfftt
-o /tmp/strace -s 5000) or tcpdump to confirm if nginx is or is
Hi everyone, i am about to release 2.0.16 during the week end.
If there is still some PR/patch me or Riccardo have not backported to the
stable branch, please drop a message here.
Thanks
--
Roberto De Ioris
http://unbit.com
___
uWSGI mailing list
uWS
I made a PR today that unbroke the static-gzip stuff I broke when adding brotli
support...
On 9 February 2018 5:13:06 PM AEDT, Roberto De Ioris wrote:
>Hi everyone, i am about to release 2.0.16 during the week end.
>
>If there is still some PR/patch me or Riccardo have not backported to
>the
>st