我运行mu Nginx作为反向代理从远程网址服务内容,它工作正常,当我把它移动到另一台主机,我开始得到以下错误 我测试了互联网,虽然新的主机都是精细的evern nginx服务从根位置没有问题,但当我要求一个位置服务作为反向proxt我
8583#0:* 2上游超时(110:连接超时)而 连接到上游,客户端:10.64.159.12,服务器:xxxxx.com, 请求:" GET /web/rest/v1/story/656903.json HTTP / 1.1",上游: " http://requestedurl.com:80/web/rest/v1/story/656903.json",主持人:" myurl.com"
位置配置:
location /data {
sub_filter 'http' 'https';
sub_filter_once off;
sub_filter_types application/json;
proxy_read_timeout 300;
proxy_pass http://url here ;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header Accept-Encoding "";
任何建议