From 6aa2b6244bbb3537d1ad0cbca6390db18e2383d0 Mon Sep 17 00:00:00 2001 From: Artur Date: Sun, 6 Oct 2024 19:50:38 +0200 Subject: [PATCH] proxy-nginx --- deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile b/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile index 924e4cf..4d39605 100755 --- a/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile +++ b/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile @@ -3,7 +3,7 @@ def domainsToCert = [ // [ false, 'bodypainter.eu', "mail", "stat", "www" ] // [ false, 'artikus.dynu.net', "mail", "stat", "www", "nextcloud" ] - [ false, '${CERTIFICATES_FOR}', "www"] + [ false, "${CERTIFICATES_FOR}", "www"] ] def createCert(domains, repo){ @@ -70,7 +70,7 @@ pipeline { stage('Make https cert for my domains') { steps { script{ - def repo_name ="zaklik-by-spring-boot" + def repo_name ="proxy-nginx" createCert( domainsToCert, repo_name ) } }