proxy-nginx

This commit is contained in:
Artur 2024-10-06 19:50:38 +02:00
parent 579695c1aa
commit 6aa2b6244b
1 changed files with 2 additions and 2 deletions

View File

@ -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 )
}
}