kopia lustrzana https://github.com/harvard-lil/archive.social
3 wiersze
225 B
Bash
3 wiersze
225 B
Bash
|
# Generates a local key pair that can be used for signing PDFs.
|
||
|
# Will be saved under ../certs.
|
||
|
openssl req -x509 -newkey rsa:4096 -keyout ../certs/key.pem -out ../certs/cert.pem -days 3650 -nodes -subj /CN="archive.social";
|