Skip to content

Commit

Permalink
[Elao - App - Docker] User normalized ansible handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
nervo committed Apr 11, 2024
1 parent 3e3ad07 commit 8aaadd8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
- ["{{ certificates_ssl_pem }}", certs]
- ["{{ certificates_ssl_key }}", private]
notify:
- nginx restart
- Restart nginx
when: (certificates_ssl_key is file)
and (certificates_ssl_pem is file)

Expand All @@ -86,7 +86,7 @@
type: RSA
size: 4096
notify:
- nginx restart
- Restart nginx
- name: certificates > Generate self signed ssl certificate signing request
community.crypto.openssl_csr:
path: /etc/ssl/certs/ssl.csr
Expand All @@ -102,6 +102,6 @@
privatekey_path: /etc/ssl/private/ssl.key
provider: selfsigned
notify:
- nginx restart
- Restart nginx
when: (certificates_ssl_key is not file)
or (certificates_ssl_pem is not file)

0 comments on commit 8aaadd8

Please sign in to comment.