V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
iMath
V2EX  ›  OpenAI

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

  •  1
     
  •   iMath · May 25, 2024 · 1678 views
    This topic created in 702 days ago, the information mentioned may be changed or developed.

    我的 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
    
    }
    
    xxxccc
        1
    xxxccc  
       May 25, 2024
    nginx 返回 502 ,说明 nginx 访问后端服务实例出错,检查一下 nginx 的机器到 chatgpt 服务器的网络连通性。
    iMath
        2
    iMath  
    OP
       May 25, 2024
    @d9e7381f 连通性没问题,毕竟我 fq 也是用这个服务器
    sduoduo233
        3
    sduoduo233  
       May 25, 2024 via Android
    chatgpt 套 cloudflare 了,会检查 tls 指纹啥的,应该不能直接反代
    ihmily
        4
    ihmily  
       May 25, 2024
    API 可以反代,WEB 没试过
    iMath
        5
    iMath  
    OP
       May 26, 2024
    那为什么我 fq 能用? fq 不也是代理吗?
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   4433 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 45ms · UTC 04:11 · PVG 12:11 · LAX 21:11 · JFK 00:11
    ♥ Do have faith in what you're doing.