diff --git a/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile b/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile index 8951c08..3de762e 100755 --- a/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile +++ b/deploy-this/lets-encrypt/lets-encrypt-create-cert.jenkinsfile @@ -1,6 +1,8 @@ def domainsToCert = [ [ false, 'kopama.com.pl', 'www'], + [ false, 'plecianki.pl'], + [ false, 'bodypainter.eu', "www", "mail", "stat"], [ false, 'themself.eu', "www", "mail", "stat", "massage", "driving", "kopama" ], diff --git a/nginx-config/https/plecianiki.pl.conf b/nginx-config/https/plecianiki.pl.conf new file mode 100644 index 0000000..216cc27 --- /dev/null +++ b/nginx-config/https/plecianiki.pl.conf @@ -0,0 +1,13 @@ +server { + listen 80; + listen 443 ssl; + server_name plecianki.pl; + + server_tokens off; + + ssl_certificate /letsencrypt/live/plecianki.pl/fullchain.pem; + ssl_certificate_key /letsencrypt/live/plecianki.pl/privkey.pem; + + return 301 https://www.facebook.com; + +}