同一服務器ip如果多個獨立域名既要80 http訪問,又要443https訪問。
要讓https和http並存,不能在配置文件中使用ssl on,配置listen 443 ssl;
實例
server
{
listen 168.104.102.52:80;
listen 168.104.102.52:443 ssl;
server_name www.iamle.com;
index index.html index.htm index.php;
root /home/wwwroot/www.iamle.com/;
#ssl on; 這里要注釋掉
ssl_certificate /usr/local/nginx/conf/www_iamle_com.crt;
ssl_certificate_key /usr/local/nginx/conf/www_iamle_com.key;
#以下配置省略
}
這種方式對seo貌似不友好,更多詳細http 轉https 設置參考https://www.cnblogs.com/kevingrace/p/6187072.html