Specify Certbot to use a 3072 bits RSA key instead of the default 2048
This commit is contained in:
parent
030bbcc100
commit
8297ab00e4
1 changed files with 4 additions and 0 deletions
|
@ -65,6 +65,10 @@ fn le_install(domain: String) {
|
|||
|
||||
let output = Command::new("/usr/bin/certbot")
|
||||
.arg("--nginx")
|
||||
.arg("--key-type")
|
||||
.arg("rsa")
|
||||
.arg("--rsa-key-size")
|
||||
.arg("3072")
|
||||
.arg("-d")
|
||||
.arg(&domain)
|
||||
.output()
|
||||
|
|
Reference in a new issue