【nginx】http 转 https 问题

http 与 https 用两个接口

直接将http的端口监听上 转向 https 监听,可以rewrite指令或者return指令

  • rewrite
rewrite ^(.*) https://$server_name$1 permanent;
  • return
return 301 https://$server_name$request_uri;

http 与 https 用一个接口

正常来讲无法讲一个端口即使用http 协议又使用https协议。但可以利用497报错信息进行转向

error_page  497 https://$host:$server_port$request_uri;     

你可能感兴趣的:(【nginx】http 转 https 问题)