Is there setting equivalent to proxy_set_header for uwsgi?

I tried use uwsgi_params, but the uwsgi server will fail to pass it.

Posted at Nginx Forum:

Il giorno 17/ago/2011, alle ore 05:10, yejun ha scritto:

I tried use uwsgi_params, but the uwsgi server will fail to pass it.

The directive is

uwsgi_param KEY VALUE;

You have to put them under a location stanza:

location / {
include uwsgi_params;
uwsgi_param FOO bar;
uwsgi_param fookey fooval;
uwsgi_pass 127.0.0.1:3031;
}

They will be blindly put in your app request dictionary.


Roberto De Ioris
http://unbit.it
JID: removed_email_address@domain.invalid

I have tried this. The uwsgi server gives an error

INVALID PROTOCOL:
[pid: 32149|app: 0|req: -1/1] () {22 vars in 803 bytes} [Wed Aug 17
00:54:50 2011] => generated 45 bytes in 0 msecs ( 500) 2 headers in 63
bytes (0 switches on core 0)

My uwsgi is a django app, the command line looks like this

uwsgi --uid 1000 -H /mnt/python -s :8000 --wsgi-file
path/wsgi_handler.py

Without uwsgi_param, this works perfectly.

Posted at Nginx Forum:

Il giorno 17/ago/2011, alle ore 06:58, yejun ha scritto:

uwsgi --uid 1000 -H /mnt/python -s :8000 --wsgi-file
path/wsgi_handler.py

Without uwsgi_param, this works perfectly.

Posted at Nginx Forum:
Re: Is there setting equivalent to proxy_set_header for uwsgi?

You should post your current nginx config, otherwise it will be very
hard to help you :slight_smile:

Roberto De Ioris
http://unbit.it
JID: removed_email_address@domain.invalid