We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
we use django+nginx and third nginx reverse proxy in the front.
Google auth2 fails because of the too big header sending from reverse proxy to the nginx+django layer.
Could you help please
The text was updated successfully, but these errors were encountered:
This is fixed here f138221
Sorry, something went wrong.
If you have nginx error 502, try to add to nginx config file the following buffer setup:
http { ..... ..... proxy_buffer_size 128k; proxy_buffers 4 256k; proxy_busy_buffers_size 256k; .....
This doesn't seem to be a problem with python-social-auth but just something with your setup, right?
No branches or pull requests
Hi,
we use django+nginx and third nginx reverse proxy in the front.
Google auth2 fails because of the too big header sending from reverse proxy to the nginx+django layer.
Could you help please
The text was updated successfully, but these errors were encountered: