Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

建议:api.py增加对http_proxy的代理判断。 #23

Closed
hoochanlon opened this issue Mar 6, 2023 · 2 comments
Closed

建议:api.py增加对http_proxy的代理判断。 #23

hoochanlon opened this issue Mar 6, 2023 · 2 comments

Comments

@hoochanlon
Copy link

我在做公网IP测试访问时,因为没有域名,而https证书是和域名进行绑定的,直接使用https+ip地址证书就会校验失败,所以无法通过https+ip地址访问后台服务。就算开了代理,或proxychain这种终端全局代理,也是无济于事。

#17 的问题呢,可以用 httping 工具做测试,看看代理是否生效,再综合分析原因,校对故障。

API_KEY = os.environ.get('API_KEY')
if proxy := os.environ.get('HTTPS_PROXY'):
PROXIES = {"https://": proxy}

以上都是我个人的理解啦,如有不对,还请作者及大家共同指正。

@nowanti
Copy link
Contributor

nowanti commented Mar 6, 2023

你这个问题是证书和IP不匹配导致校验失败,跟你是否使用全局代理没有任何关系。两个问题互相矛盾,建议直接用IP,不要证书。否则请关联域名。

@hoochanlon
Copy link
Author

你这个问题是证书和IP不匹配导致校验失败,跟你是否使用全局代理没有任何关系。两个问题互相矛盾,建议直接用IP,不要证书。否则请关联域名。

了解,谢谢。被弄糊涂了。

顺带关联“关于访问openai接口网络不通的解决方案”:zhayujie/chatgpt-on-wechat#351 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants