|
|
本帖最后由 vegazy 于 2022-12-8 14:29 编辑
http://chatgpt.lijiejie.com/chat 有部分API无法反代
反代规则是这样的:
location / {
proxy_pass https://chat.openai.com/;
proxy_set_header Host chat.openai.com;
proxy_redirect ~^https://chat.openai.com(.*) http://$server_name$1;
proxy_set_header Cookie ""
} |
|