Update README.md

更新证书申请
This commit is contained in:
rebecca554owen 2023-12-02 14:47:03 +08:00 committed by GitHub
parent f956ce78cd
commit 2bfe8d3ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,25 @@
### TG交流群
欢迎加入交流群 [点击加入](https://t.me/+DcRt8AB2VbI2Yzc1)
准备工作:安装docker,docker compose
准备工作:申请证书
配置ssl证书,使用acme配置证书要占用80端口
```
apt install -y vim openssl curl socat
```
```
curl https://get.acme.sh | sh -s email=rebecca554owen@gmail.com
```
```
~/.acme.sh/acme.sh --upgrade --auto-upgrade
```
可选:切换申请letsencrypt的证书,`~/.acme.sh/acme.sh --set-default-ca --server letsencrypt`
example.com换成你自己的后端vps绑定域名
```
~/.acme.sh/acme.sh --issue -d example.com --standalone
~/.acme.sh/acme.sh --install-cert -d example.com --key-file /root/hysteria/example.com.key
~/.acme.sh/acme.sh --install-cert -d example.com --fullchain-file /root/hysteria/example.com.crt
```
安装docker,docker compose
```
curl -fsSL https://get.docker.com | bash -s docker
sudo systemctl start docker
@ -22,9 +40,6 @@ docker compose version
git clone https://github.com/cedar2025/hysteria.git hysteria && cd hysteria
```
```
apt install vim -y
```
```
vim docker-compose.yml
```
---配置文件docker-compose.yml参考