码迷,mamicode.com
首页 > Web开发 > 详细

nginx + php + https 配置

时间:2019-10-11 00:23:56      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:perm   tps   php   fas   serve   location   doc   htm   配置   

server {
        listen 80;
        server_name   你的域名或IP;
        rewrite ^(.*)$  https://$host$1 permanent;
}

server {
        listen 443 ssl;
        server_name 你的域名或IP;
        root 站点文件路径;
        index index.php index.html;

        ssl_certificate   证书.pem文件路径;
        ssl_certificate_key  证书.key文件路径;

        location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }
}

nginx + php + https 配置

标签:perm   tps   php   fas   serve   location   doc   htm   配置   

原文地址:https://www.cnblogs.com/teemwu/p/11651336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!