Linux/Letsencrypt: Difference between revisions
< Linux
(Die Seite wurde neu angelegt: „Category:Linux/Services“) |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Installation == | |||
<pre> | |||
sudo add-apt-repository ppa:certbot/certbot | |||
sudo apt-get update | |||
sudo apt-get install certbot | |||
</pre> | |||
== Standalone mode == | |||
<pre> | |||
sudo certbot certonly --standalone --preferred-challenges http -d example.com | |||
</pre> | |||
[[Category:Linux/Services]] | [[Category:Linux/Services]] |
Latest revision as of 08:38, 20 May 2019
Installation
sudo add-apt-repository ppa:certbot/certbot sudo apt-get update sudo apt-get install certbot
Standalone mode
sudo certbot certonly --standalone --preferred-challenges http -d example.com