配置nginx服务器同时支持https和http

根据要求配置好https服务,但是一般需要同时兼任http,这样可以保证用户访问这个用户访问http自动跳转到https。

只需要在nginx.conf里面添加如下内容:

server {
    listen 80;
    server_name XXX.com;// 你的域名
    rewrite ^(.*)$ https://$host$1 permanent;// 把http的域名请求转成https
}

你可能感兴趣的:(服务器,兼容http&https,http,https)