买了台国外VPS,访问丢包速度也慢,如何反向代理加速? 有两台VPS:一台CN2GIA速度不错,另一台是 los angles dc1 普通网络(丢包+延迟大) 可以用反向代理(使用CN2GIA网络)加速访问,减少丢包和延时吗? 买了, 速度, 国外
Nginx [ol]server { listen 80; server_name abc.com; location / { proxy_pass http://88.88.88.88; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } [/ol]复制代码 Apache [ol] ServerName abc.com ProxyPreserveHost On ProxyPass / http://88.88.88.88/ ProxyPassReverse / http://88.88.88.88/ [/ol]复制代码 或者你也可以单独租个小鸡装个fikker专门做加速