You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/tests/data/certificates/Readme.md

769 B

Recreating certificates

Regenerate a new certificate key together with the good (Nextcloud Security) and bad (default Org name) certificates

Good Certificate

openssl req \
  -newkey rsa:2048 \
  -nodes \
  -keyout security.nextcloud.com.key \
  -x509 \
  -days 3650 \
  -out goodCertificate.crt
  • Country Name: DE
  • State or Province Name:Berlin
  • Organization Name:Nextcloud Security
  • Common Name: security.nextcloud.com

Bad Certificate

openssl req \
  -key security.nextcloud.com.key \
  -new \
  -x509 \
  -days 3650 \
  -out badCertificate.crt
  • Country Name: DE
  • State or Province Name:Berlin