用 nginx 给 twitter api 做反向代理失败,求助
- 0次
- 2021-05-31 08:34:26
- idczone
用 iphone 的 twitter 客户端可以登录,但是无法获取 twe美国服务器ets: Error loading tweets(77)
nginx 的配置如下:
server {
listen 443;
server_name t.anbutu.com;
charset utf-8;
access_log /var/log/nginx/t.anbutu.com.access.log main;
ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
location / {
proxy_pass https://api.twitter.com:443;
proxy_set_header Host $http_host;
proxy_redirect off;
}
}
有人知道是什么原因么?
能不能帮我把这个删掉,已经搞定了
把解决办法写出来看看嘛.. 谢咯
晚上我回家整理一下吧
解决方案:
http://blog.anbutu.com/uncategorized/twitter-api-proxy-with-nginx