V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iMath
V2EX  ›  OpenAI

能用 NGINX 反向代理 OpenAI GPT 的网站 https://chatgpt.com/ 吗??

  •  1
     
  •   iMath · 23 天前 · 536 次点击

    我的 NGINX 配置如下,访问的时候只有 502 Bad Gateway,不知道是什么原因?如果哪位大佬方便的话希望帮忙试一下,谢谢!

    server {
        # the domain name it will serve for
        server_name gpt.xxxx.org; # substitute your machine's IP#以后全面 https 的话这一句要去掉
    
    
      location /
      {
            proxy_pass https://chatgpt.com/;
    
     proxy_redirect https://chatgpt.com/ /;
     proxy_cookie_domain google.com gpt.xxxx.org;
     
     proxy_set_header Accept-Encoding "";
     proxy_set_header User-Agent $http_user_agent;
     proxy_set_header Accept-Language "zh-CN";
    
    
             proxy_set_header X-Real-IP $remote_addr;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      }
    
    
        listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/gpt.xxxx.org/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/gpt.xxxx.org/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
    
    }
    
    5 条回复
    xxxccc
        1
    xxxccc  
       23 天前
    nginx 返回 502 ,说明 nginx 访问后端服务实例出错,检查一下 nginx 的机器到 chatgpt 服务器的网络连通性。
    iMath
        2
    iMath  
    OP
       23 天前
    @d9e7381f 连通性没问题,毕竟我 fq 也是用这个服务器
    sduoduo233
        3
    sduoduo233  
       23 天前 via Android
    chatgpt 套 cloudflare 了,会检查 tls 指纹啥的,应该不能直接反代
    ihmily
        4
    ihmily  
       23 天前
    API 可以反代,WEB 没试过
    iMath
        5
    iMath  
    OP
       22 天前
    那为什么我 fq 能用? fq 不也是代理吗?
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1499 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 22ms · UTC 17:13 · PVG 01:13 · LAX 10:13 · JFK 13:13
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.