- create
mkdir certs && cd certs && \
openssl req -x509 -newkey rsa:4096 -keyout nginx.key -out nginx.crt -days 365 -nodes -subj "/CN=vaultwarden.test.com"
- nenew
cd certs && \
openssl req -new -key nginx.key -out nginx.csr -subj "/CN=vaultwarden.test.com" && \
openssl x509 -req -in nginx.csr -signkey nginx.key -out nginx.crt -days 365