+
95
-

阿里云的oss的下行费用过高怎么解决?

随着经济的下行,阿里云等云服务商开始对oss及cdn加速等产品上调价格,现在各大云服务器上阿里云、腾讯云的cdn下载费用翻了好几倍了。阿里云的oss的下行费用过高怎么解决?


网友回复

+
15
-

有两种方式:

1、购买流量包

2、购买一个廉价的ecs充当中间缓存

我们以nginx为例

http {


    server {
        listen 80;
        server_name youdomian.com;


        location / {
            proxy_pass http://oss的阿里云访问地址

            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $...

点击查看剩余70%

我知道答案,我要回答