Browse Source

fixing the letsencrypt cert generation command in the powershell command (#1102)

pull/1103/head v1.39.0
Joseph Flinn 5 years ago committed by GitHub
parent
commit
5059e0a693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      scripts/run.ps1

4
scripts/run.ps1

@ -64,8 +64,8 @@ function Install() { @@ -64,8 +64,8 @@ function Install() {
$certbotExp = "docker run -it --rm --name certbot -p ${certbotHttpsPort}:443 -p ${certbotHttpPort}:80 " +`
"-v ${outputDir}/letsencrypt:/etc/letsencrypt/ certbot/certbot " +`
"certonly{0} --standalone --noninteractive --agree-tos --preferred-challenges http " +`
"--email ${email} -d ${domain} --logs-dir /etc/letsencrypt/logs" -f $qFlag
Invoke-Expression $certbotExp
"--email ${email} -d ${domain} --logs-dir /etc/letsencrypt/logs"
Invoke-Expression ($certbotExp -f $qFlag)
}
}

Loading…
Cancel
Save