服务器快速申请免费SSL证书_2023年10月29日可用

目的

在服务器端通过命令快速申请免费域名的SSL证书.
                                       --2023年10月29日可用

环境

  • Centos
  • 拥有域名
    • 假设该域名为:demo.com

Ubuntu 同样适用

步骤

下载组件

  • 前期准备

CentOS服务器

yum update
yum install socat

Ubuntu服务器

apt update
apt install socat
  • 下载acme.sh到本地

    默认在/root/.acme.sh/

    邮箱[email protected]改为你的邮箱

curl https://get.acme.sh | sh -s [email protected]

下载证书

/root/.acme.sh/acme.sh --issue -d demo.com --standalone

证书文件自动下载到本地/root/acme.sh/demo.com_ecc 文件夹

查看证书

证书文件自动下载到本地/root/acme.sh/demo.com_ecc 文件夹

最后一个根你的域名有关

cd /root/.acme.sh
ls
cd demo.com_ecc

文件包含如下,该密钥文件可以部署到nginx,通过https访问

demo.com.cer (公钥)
demo.com.key (私钥)

todo:

  • 安装nginx
  • 将两个证书文件部署到nginx路径即可,具体可参考下一篇博文。

  • 注:接单前端代码的服务器部署,私信或者邮件[email protected]

    • 内容包括完整代码的服务器部署流程

    • 服务器域名的购买(自己提供也可以)

    • 域名映射 + 服务器的前端代码部署 150RMB

    • 也支持:静态页面的书写(如落地页、官方网站、个人简历) 200RMB起步,根据页面和内容多少确定

  • 最后效果: demo.com可访问对应网页

其他

如有问题 欢迎提出

如有疑问 欢迎留言

如有作用 欢迎点赞

如有失效 欢迎留言

个人邮箱:[email protected]

2023年10月 可用

你可能感兴趣的:(服务器,ssl,运维)