squid/README.md

17 lines
404 B
Markdown
Raw Normal View History

2020-07-30 13:30:40 +00:00
# squid
2020-08-04 19:48:14 +00:00
apt cacher for debian
inspired by https://github.com/salrashid123/squid_proxy
## making a CA
```shell
cd myCA
openssl genrsa -out CA_key.pem 2048
openssl req -x509 -days 600 -new -nodes -key CA_key.pem -out CA_crt.pem -extensions v3_ca -config openssl.cnf -subj "/C=US/ST=California/L=Mountain View/O=Google/OU=Enterprise/CN=MyCA"
```
2020-08-05 13:02:27 +00:00
## releasing
[see here](https://sigyl.com/releases/)