We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to handle CA renewals?
The text was updated successfully, but these errors were encountered:
E.g. (from another repo):
#!/bin/bash
mkdir -p config && openssl req -x509 -nodes -days 365 -newkey rsa:2048 -sha256 -subj '/O=root' -keyout config/cakey -out config/cacert
openssl req -nodes -new -days 365 -newkey rsa:2048 -sha256 -subj '/CN=localhost' -keyout config/key -out config/cert.csr
openssl x509 -req -CAcreateserial -sha256 -CA config/cacert -CAkey config/cakey -in config/cert.csr -out config/cert
openssl req -nodes -new -days 365 -newkey rsa:2048 -sha256 -subj '/CN=database' -keyout config/key2 -out config/cert2.csr
openssl x509 -req -CAcreateserial -sha256 -CA config/cacert -CAkey config/cakey -in config/cert2.csr -out config/cert2
cat config/key config/cert > config/combined cat config/key2 config/cert2 > config/combined2
Sorry, something went wrong.
No branches or pull requests
How to handle CA renewals?
The text was updated successfully, but these errors were encountered: