]> Untitled Git - lemmy.git/commitdiff
Fix --cert-name for certbot. (#1631)
authorDessalines <dessalines@users.noreply.github.com>
Sun, 13 Jun 2021 18:28:32 +0000 (14:28 -0400)
committerGitHub <noreply@github.com>
Sun, 13 Jun 2021 18:28:32 +0000 (18:28 +0000)
ansible/lemmy.yml
ansible/lemmy_dev.yml

index be4cea6242f4d80444226e4001caba6fc6b25608..969d6aff26b6a5332e33196e8f022314097cf4c6 100644 (file)
@@ -42,7 +42,7 @@
     when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
 
   - name: request initial letsencrypt certificate
-    command: certbot certonly --nginx --agree-tos -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
+    command: certbot certonly --nginx --agree-tos --cert-name '{{ domain }}' -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
     args:
       creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
 
       special_time: daily
       name: certbot-renew-lemmy
       user: root
-      job: "certbot certonly --nginx -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
+      job: "certbot certonly --nginx --cert-name '{{ domain }}' -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
index 3fd8cf7223ba3bb8cac22e555d19c502d91591a0..141900a35d6dbe34de387f8d19f9724c5c9ba4f9 100644 (file)
@@ -31,7 +31,7 @@
         - 'python-certbot-nginx'
 
   - name: request initial letsencrypt certificate
-    command: certbot certonly --nginx --agree-tos -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
+    command: certbot certonly --nginx --agree-tos --cert-name '{{ domain }}' -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
     args:
       creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
 
       special_time: daily
       name: certbot-renew-lemmy
       user: root
-      job: "certbot certonly --nginx -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
+      job: "certbot certonly --nginx --cert-name '{{ domain }}' -d '{{ domain }}' --deploy-hook 'nginx -s reload'"