Nginx配置SSL证书实现HTTPS访问

申请第三方权威认证机构(如CA,Symantec,GeoTrust,CFCA)签发的SSL数字证书,实现网站HTTPS访问

证书文件:

app.yezhou.cc.jks
app.yezhou.cc.key
app.yezhou.cc.pem
app.yezhou.cc.pfx

虚拟主机配置:

server {
    listen       80;
    listen       443 ssl;
    server_name  app.yezhou.cc;
    index index.html index.htm index.php;
    root /data/www/app;
    server_name_in_redirect off;

    location ~ .+\.php($|/)
    {
        #fastcgi_pass  unix:/tmp/php-cgi.sock;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        include       fastcgi.conf;

        fastcgi_split_path_info  ^(.+\.php)(/.*)$;
        fastcgi_param  PATH_INFO $fastcgi_path_info;
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires 30d;
    }
    location ~ .*\.(js|css)?$
    {
        expires 1h;
    }
    #伪静态及日志
    #include /data/server/nginx/conf/rewrite/app.conf;
    error_log /data/www/logs/app-error.log;
    access_log /data/www/logs/app-access.log;

    ssl on;
    ssl_certificate /data/ssl/app/app.yezhou.cc.pem;
    ssl_certificate_key /data/ssl/app/app.yezhou.cc.key;
    ssl_session_timeout 5m;
}

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/19/nginx-config-ssl-certificate-for-https-access/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Nginx配置SSL证书实现HTTPS访问
申请第三方权威认证机构(如CA,Symantec,GeoTrust,CFCA)签发的SSL数字证书,实现网站HTTPS访问 证书文件: app.yezhou.cc.jks app.yezhou.cc.key app.yezhou……
<<上一篇
下一篇>>
文章目录
关闭
目 录