rg305
22
You have to install it into the web server [just once].
Try:
certbot certonly \
--webroot -w /var/www/html \
-d lpac-asterisk.covici.com \
--cert-name LPAC \
-i apache \
--reinstall
OR
Create your own secure vhost file and enable it [into Apache].
covici
23
I got certificate not due for renewal, no action taken.
Osiris
24
@rg305 I don't think the certonly subcommand will install anything.
covici
25
So, how can I get this cert to work with apache?
rg305
26
^^ that would always work
Otherwise,
Try:
certbot run \
--webroot -w /var/www/html \
-d lpac-asterisk.covici.com \
--cert-name LPAC \
-i apache \
--reinstall
[replace certonly with run]
covici
27
OK, so finally we have done it!! The certbot run did the trick.
Thanks again.