Trac authentication failing

I am running Trac inside uWSGI, with nginx as front-end server. I have
also set up basic http authentication in nginx. Now, theoretically,
when authenticated in nginx, Trac should recognize the user and
display its name, identify the new tickets, etc. But that is not
happening.

How can make sure the authentication information is being sent to
uWSGI and received by Trac?


Lucas Clemente Vella
[email protected]

I am running Trac inside uWSGI, with nginx as front-end server. I have
also set up basic http authentication in nginx. Now, theoretically,
when authenticated in nginx, Trac should recognize the user and
display its name, identify the new tickets, etc. But that is not
happening.

How can make sure the authentication information is being sent to
uWSGI and received by Trac?

Be sure to have

uwsgi_param REMOTE_USER $remote_user

in your config or includes file


Roberto De Ioris
http://unbit.it

2011/11/10 Roberto De Ioris [email protected]:

Be sure to have

uwsgi_param REMOTE_USER $remote_user

in your config or includes file

Like a charm.

Thanks!


Lucas Clemente Vella
[email protected]