python - nginx 拦截 google oauth 重定向

标签 python django nginx gunicorn

我在 gunicorn 服务器上设置了我的 django 应用程序,该服务器由 nginx(也用于静态文件)代理,nginx 使用来自 Google 的凭据代码“拦截”GET 请求!为什么 nginx 窃取请求而不是将其传递给 gunicorn 进行处理?

这是我的 web 应用程序的 api 信息:

Client ID:  
67490467925-v76j4e7bcdrps3ve37q41bnrtjm3jclj.apps.googleusercontent.com
Email address:  
67490467925-v76j4e7bcdrps3ve37q41bnrtjm3jclj@developer.gserviceaccount.com
Client secret:  
XquTw495rlwsHOodhWk
Redirect URIs:  http://www.quickerhub.com
JavaScript origins: https://www.quickerhub.com

这是被 nginx 窃取的完美 GET 请求:

http://www.quickerhub.com/?code=4/bzqKIpj3UA3bBiyJfQzi3svzPBLZ.QoB_rXWZ6hUbmmS0T3UFEsPMOFF4fwI

当然还有甜蜜的 nginx 给我“欢迎使用 nginx!”页...

有没有办法告诉 nginx 将这些请求传递给 gunicorn?还是我做错了什么?

谢谢!

NGINX 虚拟主机配置:

upstream interest_app_server {
  # fail_timeout=0 means we always retry an upstream even if it failed
  # to return a good HTTP response (in case the Unicorn master nukes a
  # single worker for timing out).

  server unix:/webapps/hello_django/run/gunicorn.sock fail_timeout=0;
}

server {

    listen   80;
    server_name quickerhub.com;

    client_max_body_size 4G;

    access_log /webapps/hello_django/logs/nginx-access.log;
    error_log /webapps/hello_django/logs/nginx-error.log;

    location /static {
        root   /webapps/hello_django/interest/;
    }

    location /media {
        root   /webapps/hello_django/interest/;
    }

    location /static/admin {
        root /webapps/hello_django/lib/python2.7/site-packages/django/contrib/admin/;
    }

    location / {
        # an HTTP header important enough to have its own Wikipedia entry:
        #   http://en.wikipedia.org/wiki/X-Forwarded-For
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        # enable this if and only if you use HTTPS, this helps Rack
        # set the proper protocol for doing redirects:
        # proxy_set_header X-Forwarded-Proto https;

        # pass the Host: header from the client right along so redirects
        # can be set properly within the Rack application
        proxy_set_header Host $http_host;

        # we don't want nginx trying to do something clever with
        # redirects, we set the Host: header above already.
        proxy_redirect off;

        # set "proxy_buffering off" *only* for Rainbows! when doing
        # Comet/long-poll stuff.  It's also safe to set if you're
        # using only serving fast clients with Unicorn + nginx.
        # Otherwise you _want_ nginx to buffer responses to slow
        # clients, really.
        # proxy_buffering off;

        # Try to serve static files from nginx, no point in making an
        # *application* server like Unicorn/Rainbows! serve static files.
        if (!-f $request_filename) {
            proxy_pass http://interest_app_server;
            break;
        }
    }

    # Error pages
    error_page 500 502 503 504 /500.html;
    location = /500.html {
        root /webapps/hello_django/interest/templates/;
    }
}

最佳答案

你有

server_name quickerhub.com;

get请求正在返回

http://www.quickerhub.com/?code=4/bzqKIpj3UA3bBiyJfQzi3svzPBLZ.QoB_rXWZ6hUbmmS0T3UFEsPMOFF4fwI

quickerhub.com != www.quickerhub.com 等 nginx 无法提供默认页面(当它找不到虚拟主机时)。

你需要做的就是使用

server_name www.quickerhub.com quickerhub.com;

或者更好的是,将此添加到“规范化”您所有的 url 到没有 www 的版本。

server {
    server_name www.quickerhub.com;

    expires epoch;
    add_header Cache-Control "no-cache, public, must-revalidate, proxy-revalidate";
    rewrite ^ http://quickerhub.com$request_uri permanent;
}

关于python - nginx 拦截 google oauth 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17518598/

相关文章:

python - Django + MongoDB

python - 验证和登录之间有什么区别?

Nginx 检查 Cloudflare 是否转发或直接 IP 并相应限制

python - 常规 Python 中的 %%writefile 魔术命令

python - 如何将 INI 文件转换为 CSV 文件

python - 时间窗口崩溃的容量限制车辆路径问题

python - 哪些Web服务器与gevent兼容,两者之间有何关系?

python - Django 明显不与 Postgres 一起工作

python - Django:有没有办法知道 url 在应用程序中是否有效?

python - 使用 nginx 和 Python 防止网站在更新期间关闭