下面这段 nginx 配置
location /lantern/ {
proxy_set_header Accept-Encoding '';
proxy_pass https://getlantern.org/;
sub_filter '"/static' '"/lantern/static';
sub_filter_once off;
}
问题 1 : proxy_set_header 无效 问题 2: sub_fiter 无效
1
Zohar 2016-07-08 16:30:31 +08:00 via Android
加上下面这行试试看:
``` proxy_set_header Connection ""; ``` |