Authored by hf

code review by fei.hong: do add login support https modify nginx config

... ... @@ -396,6 +396,12 @@ server
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Accept-Encoding "gzip";
}
location ^~ /dist/ {
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://cdn.yoho.cn/;
}
location ~* \.(ico|woff|svg|eot|ttf|otf)$ {
expires 30d;
... ...