-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lego): allow running multiple instances with systemd templates
- Loading branch information
1 parent
53fb5ce
commit f9a78c4
Showing
2 changed files
with
29 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
LEGO_USER={{ lego_user_res.name }} | ||
LEGO_GROUP={{ lego_user_res.group }} | ||
LEGO_CERT_STORE_OWNER={{ lego_certificate_store_user }} | ||
LEGO_CERT_STORE_GROUP={{ lego_certificate_store_group }} | ||
LEGO_CERT_STORE_PATH={{ lego_certificate_store }} | ||
LEGO_CERT_STORE_MODE={{ lego_certificate_store_mode }} | ||
LEGO_CWD={{ lego_base_path }} | ||
LEGO_COMMAND={{ lego_command_systemd }} | ||
{% if lego_enable_metrics_textfile %} | ||
LEGO_ENABLE_METRICS=true | ||
{% endif %} | ||
{% if lego_post_renewal_script is defined %} | ||
LEGO_POST_RENEW_HOOK_PATH={{ lego_post_renewal_script }} | ||
{% endif %} | ||
{% for envvar in lego_configuration_merged.environment %} | ||
{{ envvar }}={{ lego_configuration_merged.environment[envvar] }} | ||
{% endfor %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters