概述
server {
listen 443; #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
server_name www.example.com; #将localhost修改为您证书绑定的域名,例如:www.example.com。
root /var/www/html/Applets; 目录
index index.html index.htm;
ssl on;
ssl_certificate /etc/nginx/cert/tao.cn.pem; #您证书的文件名。
ssl_certificate_key /etc/nginx/cert/tao.cn.key; #您证书的密钥文件名。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
ssl_protocols TLSv1; #使用该协议进行配置。
ssl_prefer_server_ciphers on;
location ~ .*.(php|php5)
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+.php)(.*)$; #新加第一句
fastcgi_param PATH_INFO $fastcgi_path_info;#新加第二句
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location /status {
stub_status on;
access_log off;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ .*.(js|css)?$
{
expires 12h;
}
}
上面代码放入到nginx 配置中 nginx -t检查配置文件语法是否正确 正确会返回successful
记得开启nginx 443端口,还有服务器安全组的443端口
最后
以上就是端庄小海豚为你收集整理的nginx 添加https的全部内容,希望文章能够帮你解决nginx 添加https所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复