Skip to content

Commit

Permalink
Move days to correct command
Browse files Browse the repository at this point in the history
  • Loading branch information
BrutalBirdie committed Dec 22, 2023
1 parent 9667138 commit 728d7d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ acme_home: "/root/.acme.sh"
acme_config_home: "/root/.acme.sh"
acme_certhome: "/root/.acme.sh"
acme_accountkey: "/root/.acme.sh/account.key"
acme_days: "30"
acme_renew_days: "30"

# https://github.com/acmesh-official/acme.sh/wiki/How-to-issue-a-cert
# The acme.sh instlal command
Expand All @@ -32,13 +32,12 @@ acme_letsencrypt_install_command: >-
--home {{ acme_home }}
--config-home {{ acme_config_home }}
--certhome {{ acme_certhome }}
--days {{ acme_days }}
--accountemail {{ acme_letsencrypt_email }}
--accountkey {{ acme_accountkey }}
# The acme.sh create command
acme_letsencrypt_create_command: >-
{{ acme_letsencrypt_script }} --issue --domain {{ acme_hostname }}
{{ acme_letsencrypt_script }} --issue --days {{ acme_renew_days }} --domain {{ acme_hostname }}
--standalone
--server letsencrypt
--keylength ec-256
Expand Down

0 comments on commit 728d7d8

Please sign in to comment.