Plugin to allow acme dns-01 authentication of a name managed in cPanel. Useful for automating and creating a Let's Encrypt certificate (wildcard or not) for a service with a name managed by cPanel, but installed on a server not managed in cPanel. WWW: https://pypi.org/project/certbot-dns-cpanel/ PR: 244096 Submitted by: Venim <h.freshports@skarnell.se>
25 lines
648 B
Plaintext
25 lines
648 B
Plaintext
[
|
|
{ type: install
|
|
message: <<EOM
|
|
How to run certbot using the cPanel plugin:
|
|
|
|
$ certbot certonly \
|
|
--authenticator certbot-dns-cpanel:cpanel \
|
|
--certbot-dns-cpanel:cpanel-credentials %%PREFIX%%/etc/certbot-dns-cpanel/credentials.ini \
|
|
-d 'exemple.com' \
|
|
-d '*.exemple.com'
|
|
|
|
You can also specify a installer plugin with the --installer option.
|
|
|
|
$ certbot run \
|
|
--authenticator certbot-dns-cpanel:cpanel \
|
|
--installer apache \
|
|
--certbot-dns-cpanel:cpanel-credentials %%PREFIX%%/etc/certbot-dns-cpanel/credentials.ini \
|
|
-d 'exemple.com' \
|
|
-d '*.exemple.com'
|
|
|
|
More details on https://github.com/badjware/certbot-dns-cpanel.
|
|
EOM
|
|
}
|
|
]
|