文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

nginx本地配置https

2023-09-13 09:57

关注

安装chocolatey

  1. 管理员身份打开cmd

  2. 在cmd窗口运行以下命令

   @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" 
  1. 验证是否安装成功(显示版本号则成功)

     choco 

安装mkcert

  1. 使用chocolatey安装

choco install mkcert
  1. 添加环境变量

    我的电脑->属性->高级系统设置->环境变量->系统变量->Path->新建->输入mkcert地址(mkcert.exe所在地址。具体看安装目录。)

    C:\ProgramData\chocolatey\lib\mkcert\tools
  2. 验证是否安装完成

     mkcert
  3. 使用mkcert安装本地系统信任

    mkcert -install
  4. 使用mkcert创建证书

    mkcert local.tp5.com(证书名称)

Nginx 配置(443端口及指定证书路径)

编辑nginx.conf

如果使用了nignx.conf 使用了include /etc/nginx/conf.d/*.conf; 则去修改相应的xxx.conf配置文件

server{    listen 80; #监听80端口    listen [::]:80;    server_name  local.tp5.com; #域名    root /www/tp5/public; #网站跟目录    index index.html index.php index.htm;    # return 301 https://$host/shengji.html;    return 301 https://$host$request_uri; #强制跳转到https        location /reader {        if ($http_user_agent ~* "Baiduspider|360Spider|bingbot|Googlebot|Sogou web spider") {            return 301 https://$host;        }    }    #php设置    location ~ \.php$ {        set $script $uri;        set $path_info "";        if ($uri ~ "^(.+\.php)(/.+)") {            set $script $1;            set $path_info $2;        }        fastcgi_pass php73:9000;        fastcgi_buffer_size 512k;        fastcgi_buffers 6 512k;        fastcgi_busy_buffers_size 512k;        fastcgi_temp_file_write_size 512k;        fastcgi_index index.php?IF_REWRITE=1;        fastcgi_param PATH_INFO $path_info;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_param SCRIPT_NAME $script;        fastcgi_read_timeout 10000;        include fastcgi_params;    }    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {        expires      30d;    }    location ~ .*\.(js|css|txt)?$ {        expires      12h;    }    location ~ /\. {        deny all;    }}server{    listen 443 ssl;    listen [::]:443;    server_name  local.tp5.com;    root /www/tp5/public;    index index.html index.php index.htm;    #return 301 https://$host/shengji.html;    #return 301 https://$host$request_uri;    ssl on;    ssl_certificate /etc/nginx/conf.d/cert/local.tp5.com.pem;  #letsencrypt证书路径,    ssl_certificate_key /etc/nginx/conf.d/cert/local.tp5.com-key.pem; #letsencrypt秘钥路径,        location ~ \.php$ {        set $script $uri;        set $path_info "";        if ($uri ~ "^(.+\.php)(/.+)") {            set $script $1;            set $path_info $2;        }        fastcgi_pass php73:9000;        fastcgi_buffer_size 512k;        fastcgi_buffers 6 512k;        fastcgi_busy_buffers_size 512k;        fastcgi_temp_file_write_size 512k;        fastcgi_index index.php?IF_REWRITE=1;        fastcgi_param PATH_INFO $path_info;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_param SCRIPT_NAME $script;        fastcgi_read_timeout 10000;        include fastcgi_params;    }    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {        expires      30d;    }    location ~ .*\.(js|css|txt)?$ {        expires      12h;    }    location ~ /\. {        deny all;    }    }

来源地址:https://blog.csdn.net/SphinxD/article/details/127013418

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯