certbot 服务器证书配置

cerbot

1

bash 复制代码
sudo apt update
sudo apt install python3 python3-venv libaugeas0

2

bash 复制代码
sudo python3 -m venv /opt/certbot/
sudo /opt/certbot/bin/pip install --upgrade pip

3

bash 复制代码
sudo /opt/certbot/bin/pip install certbot certbot-nginx

4

bash 复制代码
sudo ln -s /opt/certbot/bin/certbot /usr/bin/certbot

5

bash 复制代码
sudo certbot certonly --nginx

6 nginxx config

bash 复制代码
 server {
        listen 80;	
        server_name *****.eu;
        location / {
            # Redirect all HTTP traffic to HTTPS
            return 301 https://$host$request_uri;
        }
    }
    server {
        listen 443 ssl;
        server_name *****eu;
        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;
		include /etc/letsencrypt/options-ssl-nginx.conf;
        ssl_certificate /etc/letsencrypt/live/digitalshield.ydns.eu/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/digitalshield.ydns.eu/privkey.pem;
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
        location / {
       	    proxy_pass http://*****;
        }
    }
相关推荐
fragrans3 分钟前
介绍一款docker ui 管理工具
运维·docker·容器·docker ui
Evaporator Core6 分钟前
Apache HTTP 服务器高级性能优化
服务器·http·apache
Evaporator Core7 分钟前
Apache HTTP 服务器的安全配置指南
服务器·http·apache
错误:4049 分钟前
建立基于TCP的客户端和服务端
服务器·网络协议·tcp/ip
热爱生活的五柒12 分钟前
docker的简单基本操作
运维·docker·容器
A-刘晨阳16 分钟前
【Linux】Nginx一个域名https&一个地址配置多个项目【项目实战】
linux·运维·nginx·http·https
QQ同步助手1 小时前
服务器虚拟化:进阶应用与管理
运维·服务器
运维小文1 小时前
elasticsearch设置密码访问
linux·运维·elasticsearch·全文检索·索引
NiNg_1_2341 小时前
Linux中vi和vim的区别详解
linux·运维·vim
三天不学习1 小时前
Linux中 vim 常用命令大全详细讲解
linux·运维·vim