阿里雲對象存儲OSS使用 HTTPS

1、前言

  阿里雲對象存儲oss自己也是能夠用HTTPS直接訪問的,可是它自己的地址是http://***.oss-cn-hangzhou.aliyuncs.com這樣的,那麼若是咱們想使用本身的域名,而且HTTPS加密,實現,防釣魚,防劫持,防篡改,如何實現呢?html

2、域名解析

  2.1 oss自己域名: http://abc.oss-cn-hangzhou.aliyuncs.comvim

  2.2 自定義的域名: https://image.myname.com服務器

  首先咱們將 image.myname.com 解析到一個有公網ip阿里雲ECS服務器上,阿里雲上提供域名解析的服務阿里雲

3、Nginx重定向

  vim oss.conf 加密

 server {
     listen 80 ;
     listern 443 ssl;
     server_name  image.myname.com;
     access_log  logs/oss_access.log;
     error_log   logs/oss_error.log;
     ssl_certificate certs/_.***.crt;
     ssl_certificate_key certs/_.***.key;
      if ($scheme = http) {
         return    301 https://$server_name$request_uri;
      }


 loccation ~ /abc/ {
     rewrite ^(.*)/(.*)$ http://abc.oss-cn-hangzhou.aliyuncs.com/$2 last;
     proxy_set_header Host $host;
     proxy_set_header X-Real-IP $remote_addr;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
 }
相關文章
相關標籤/搜索