Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
windfgg authored Nov 18, 2023
1 parent 654e395 commit 1d3456a
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
# 信任证书
```
// 使用opensll 生成证书
openssl pkcs12 -in cert.pfx -out cert.pem -nodes
//openssl pkcs12 -in NolanProxyPoolrootCert.pfx -out narkpool.pem -nodes
//将证书一到系统里
sudo cp cert.pem /usr/local/share/ca-certificates/cert.crt
//更新证书
sudo update-ca-certificates
//验证证书
openssl verify -CAfile /etc/ssl/certs/ca-certificates.crt cert.pem
```
```
# Docker
```
docker run -p 8080:8080 \
-v /root/PorxyPool/config.yml:/config.yml \
ghcr.io/windfgg/proxypool/proxy-pool:latest
```

# config.yml
```
ProxyUrl: ""
ExpTime: 25
IntervalTime: 3
Auth:
UserName: ""
Password: ""
DetailLog: false
```

0 comments on commit 1d3456a

Please sign in to comment.