17 lines
404 B
Markdown
17 lines
404 B
Markdown
# squid
|
|
|
|
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"
|
|
```
|
|
|
|
## releasing
|
|
|
|
[see here](https://sigyl.com/releases/) |