Changes between Initial Version and Version 1 of letsencrypt


Ignore:
Timestamp:
Aug 15, 2016, 1:33:39 PM (9 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • letsencrypt

    v1 v1  
     1[[TranslatedPages]]
     2[[PageOutline]]
     3
     4= How to configure x509 on any MF/PL Server using letsencrypt =
     5
     6== If the machine is a mosh ==
     7
     8Edit the server's .pp file and add the following to the "m_mosh" class declaration:
     9
     10{{{
     11  x509_method => "letsencrypt"
     12}}}
     13
     14== If the server is not a mosh, but is running apache ==
     15
     16Run:
     17
     18{{{
     19mf-certbot /etc/apache2/sites-enables/SITE.CONF
     20}}}
     21
     22Complete the path above pointing to the web configuration file configured to respond to the domains you want certified.
     23
     24== If the server is not a mosh and is running nginx ==
     25
     26Please patch mf-certbot to work for nginx. It should be trivial.
     27
     28== If the server not a mosh and is not running a web server ==
     29
     30Run:
     31
     32{{{
     33mf-certbot domain.org www.domain.org another.domain.org
     34}}}
     35
     36== Updates ==
     37
     38The letsecnrypt software will automatically update the certificates every 3 months
     39
     40== To do ==
     41
     42Add a restart command to the post-certify hook of letsecnrypt?
     43
     44