首页 > 系统相关 >Linux服务器配置acme.sh,自动申请和续签SSL证书

Linux服务器配置acme.sh,自动申请和续签SSL证书

时间:2024-11-05 18:09:49浏览次数:1  
标签:www acme -- SSL sh test com

官方教程:https://github.com/acmesh-official/acme.sh/wiki/%E8%AF%B4%E6%98%8E

一、安装acme.sh
curl https://get.acme.sh | sh -s [email protected]

ca服务器改成letsencrypt
acme.sh --set-default-ca --server letsencrypt

二、生成证书
acme.sh --issue -d www.test.com --nginx

acme.sh --issue -d www.test.com --nginx /etc/nginx/vhost/test.conf

三、安装证书
acme.sh --install-cert -d www.test.com \
--key-file /etc/nginx/cert/www.test.com_key.pem \
--fullchain-file /etc/nginx/cert/www.test.com_cert.pem \
--reloadcmd "service nginx force-reload"

四、查看已安装证书信息
列出已申请证书
acme.sh --list

acme.sh --info -d example.com

移除证书
acme.sh --remove -d www.test.com

标签:www,acme,--,SSL,sh,test,com
From: https://www.cnblogs.com/imango/p/18528492

相关文章

  • 基于 EventBridge + DashVector 打造 RAG 全链路动态语义检索能力
    作者:肯梦本文将演示如何使用事件总线(EventBridge),向量检索服务(DashVector),函数计算(FunctionCompute)结合灵积模型服务[1]上的EmbeddingAPI[2],来从0到1构建基于文本索引的构建+向量检索基础上的语义搜索能力。具体来说,我们将基于OSS文本文档动态插入数据,进行实时的文本......
  • start-all.sh脚本启动Hadoop的NameNode、DataNode、ResourceManager和NodeManager失败
    今天在做大数据实验时,在终端,start-all.sh脚本启动Hadoop的NameNode、DataNode、ResourceManager和NodeManager失败,出现下面的错误信息:[root@node1hadoop]#./sbin/start-all.shStartingnamenodeson[node1]ERROR:AttemptingtooperateonhdfsnamenodeasrootERROR:butt......
  • 关于LIME(局部可解释模型无关解释)和SHAP(SHapley Additive exPlanations)的具体应用案例
    关注我,持续分享逻辑思维&管理思维&面试题;可提供大厂面试辅导、及定制化求职/在职/管理/架构辅导;推荐专栏《10天学会使用asp.net编程AI大模型》,目前已完成所有内容。一顿烧烤不到的费用,让人能紧跟时代的浪潮。从普通网站,到公众号、小程序,再到AI大模型网站。干货满满。学成后可......
  • 用Powershell控制指定进程窗口的位置和大小
    用Powershell控制CMD窗口的位置和大小我想控制下面这段bat代码执行时,窗口的位置和大小,里面其实是ps代码,存成bat格式#@&cls&powershell"type'%~0'|out-string|iex"&pause&exit"hello,world"cmd/cpauseCOPY我在国外找到了一个ps函数,他可以控制某个窗口的位置和大小,......
  • centos7升级openssh
    环境:OS:Centos71.查看当前的ssh和ssl版本[root@localhost~]#ssh-VOpenSSH_7.4p1,OpenSSL1.0.2k-fips26Jan2017 2.下载最新的版本OpenSSH9.8:wgethttp://down.tag.gg/Openssh/rpm/el7/openssh-9.8/openssh-9.8p1-1.el7.x86_64.rpmwgethttp://down.tag.gg/Openssh......
  • javaweb基于SSH开发学生信息及选课管理系统源码+报告 课程设计 大作业
    ......
  • ASED6015SH-ASEMI中低压MOS管ASED6015SH
    ASED6015SH-ASEMI中低压MOS管ASED6015SH型号:ASED6015SH品牌:ASEMI导通内阻:90mΩ启动电压:2V-4V最大漏源电流(Id):19A漏源击穿电压(VRM):150V封装:TO-252批号:最新安装类型:直插式封装引脚数量:3工作温度:-55°C~175°C类型:场效应二极管ASED6015SH特性:良好的开关效率;低内在电容;......
  • ssh 发送文件
    https://blog.csdn.net/qq_42477169/article/details/141104477从本地传输文件到远程主机scp/path/to/local/fileusername@remote_host:/path/to/remote/directory/从远程主机传输文件到本地scpusername@remote_host:/path/to/remote/file/path/to/local/directory/---......
  • Linux,shell基础,变量,数值运算
    linux一.shell基础1.什么是shell在linux内核与用户之间的解释器程序,通常指/bin/bash2.shell的使用方式1.交互式2.非交互式3.Bash基本特征1.快捷键2.历史命令3.重定向4.管道5.别名......
  • ssh 登录 SecureCRT连接服务器时报错
    SecureCRT连接服务器时报错,报错信息为:Keyexchangefailed.Nocompatiblekeyexchangemethod.Theserversupportsthesemethods:curve25519-sha256,[email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchang......