本站经过多次尝试,可以使用SSL(https://www.dutuji.com)或者是普通访问(http://www.dutuji.com) 请各位大侠路过,这个博客为小白博客,禁不起风吹雨打(DDCC),请高抬贵手,民工在这里谢谢了 本站配置为腾讯云+centos +wdcp+ssl 标准的小白配置 先申请SSL https://www.dutuji.com/host/server/364.html 教程这里(中国沃通) 然后是VPS 配置 下载证书我就不说了。这里我用ssh ftp 登录。 然后在www/里面建立一个文件夹:ssl。 把证书上传,就是你看到的这个ssl 目录里面
下面用SSH 登录 进入目录 我的是N+A配置,所以我是进入N 目录。如果是A请自己找, server {listen 80;server_name www.dutjji.com dutuji.com; #我是以本站作为例子,root /www/web/dutuji.com/public_html; index index.html index.php index.htm;error_page 400 /errpage/400.html;error_page 403 /errpage/403.html;error_page 404 /errpage/404.html;error_page 405 /errpage/405.html;location ~ \.php$ {fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;include fcgi.conf;}}
其实我们只需要简单增加两行就可以了 listen 443 ssl;#监听端口ssl_certificate /www/ssl/dutuji.com.crt; #证书ssl_certificate_key /root/dutuji.com.key; #网站密匙
完整的代码: server {listen 80;listen 443 ssl;server_name www.dutuji.com dutji.com ;ssl_certificate /www/ssl/dutji.com.crt;ssl_certificate_key /www/ssl/dutuji.com.key;root /www/web/dutuji.com/public_html;index index.html index.php index.htm;error_page 400 /errpage/400.html;error_page 403 /errpage/403.html;error_page 404 /errpage/404.html;error_page 405 /errpage/405.html;location ~ \.php$ {fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;include fcgi.conf;}}这是配置好的图片,i 插入,复制粘贴,然后再ESC +:wq 保存, 重启Nginx 命令:service nginxd restart
完毕, |