mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 04:38:06 +00:00
Make sure we quote all strings, and add missing "option" in second example. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
24 lines
617 B
Plaintext
24 lines
617 B
Plaintext
config acme
|
|
option account_email 'email@example.org'
|
|
option debug 0
|
|
|
|
config cert 'example_wildcard'
|
|
option enabled 0
|
|
option staging 1
|
|
list domains "example.org"
|
|
list domains "*.example.org"
|
|
option validation_method "dns"
|
|
option dns "dns_freedns"
|
|
list credentials 'FREEDNS_User="ssladmin@example.org"'
|
|
list credentials 'FREEDNS_Password="1234"'
|
|
option calias "example.com"
|
|
option dalias "dalias.example.com"
|
|
|
|
config cert 'example_subdomain'
|
|
option enabled 0
|
|
option staging 1
|
|
list domains "example.net"
|
|
list domains "www.example.net"
|
|
list domains "mail.example.net"
|
|
option validation_method "webroot"
|