server {
    listen 80;
    server_name  www.yourdomain.com yourdomain.com;  // 修改成你的域名
    rewrite ^(.*)$  https://$host$1 permanent;
}