`
jiaoronggui
  • 浏览: 1304079 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
博客专栏
B7c2eb31-a8ea-3973-a517-d00141f39b89
项目管理软件-redmin...
浏览量:115275
4a63e153-250f-30f6-a051-97cfc67cb3d3
IT职业规划
浏览量:197745
社区版块
存档分类
最新评论

nginx全站强制HTTPS

阅读更多

Nginx服务器:

在配置80端口的文件里面,写入以下内容即可。

server {

listen       80;

server_name  localhost;

rewrite ^(.*)$ https://$host$1 permanent;

location / {

root   html;

index  index.html index.htm;

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics