forked from immortalwrt/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12121 from 4wrxb/acme_dns_calias
acme: Update acme.sh URL, add support for challenge & domain alises.
- Loading branch information
Showing
3 changed files
with
33 additions
and
4 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
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 |
---|---|---|
|
@@ -3,14 +3,31 @@ config acme | |
option account_email '[email protected]' | ||
option debug 0 | ||
|
||
config cert 'example_wildcard' | ||
option enabled 0 | ||
option use_staging 1 | ||
option keylength 2048 | ||
option update_uhttpd 1 | ||
option update_nginx 1 | ||
list domains example.org | ||
list domains sub.example.org | ||
list domains *.sub.example.org | ||
# option user_setup "path-to-custom-setup.script" | ||
# option user_cleanup "path-to-custom-cleanup.script" | ||
option dns "dns_freedns" | ||
list credentials 'FREEDNS_User="[email protected]"' | ||
list credentials 'FREEDNS_Password="1234"' | ||
option calias "example.com" | ||
option dalias "dalias.example.com" | ||
|
||
config cert 'example' | ||
option enabled 0 | ||
option use_staging 1 | ||
option keylength 2048 | ||
option update_uhttpd 1 | ||
option update_nginx 1 | ||
list domains example.org | ||
list domains sub.example.org | ||
option webroot "" | ||
option dns "" | ||
# option user_setup "path-to-custom-setup.script" | ||
# option user_cleanup "path-to-custom-cleanup.script" | ||
list domains example.org |
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