This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 安装 | |
apt install certbot python3-certbot-apache apache2 | |
## 签发证书 | |
certbot --apache -d yourdomain.com -d www.youdomain.com | |
## 签发泛域名证书 | |
$ certbot certonly --preferred-challenges dns --manual -d 'yourdomain.com' -d '*.yourdomain.com' --server https://acme-v02.api.letsencrypt.org/directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
syntax on |