Skip to content

Instantly share code, notes, and snippets.

View supgeek-rod's full-sized avatar
🖖

SupeRod supgeek-rod

🖖
View GitHub Profile
@supgeek-rod
supgeek-rod / certbot
Last active September 1, 2022 11:41
Linux
## 安装
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
@supgeek-rod
supgeek-rod / .vimrc
Created June 10, 2021 02:00 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" 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