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

125 天前
 iMath

我的 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

}
726 次点击
所在节点    OpenAI
5 条回复
xxxccc
125 天前
nginx 返回 502 ,说明 nginx 访问后端服务实例出错,检查一下 nginx 的机器到 chatgpt 服务器的网络连通性。
iMath
125 天前
@d9e7381f 连通性没问题,毕竟我 fq 也是用这个服务器
sduoduo233
125 天前
chatgpt 套 cloudflare 了,会检查 tls 指纹啥的,应该不能直接反代
ihmily
125 天前
API 可以反代,WEB 没试过
iMath
124 天前
那为什么我 fq 能用? fq 不也是代理吗?

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1043870

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX