Mainos / Advertisement:

Ero sivun ”Letsencrypt” versioiden välillä

Kohteesta Taisto
Siirry navigaatioon Siirry hakuun
Rivi 34: Rivi 34:
 
   ./letsencrypt-auto --agree-dev-preview --server https://acme-v01.api.letsencrypt.org/directory
 
   ./letsencrypt-auto --agree-dev-preview --server https://acme-v01.api.letsencrypt.org/directory
  
[[Luokka:Linux|Letsencrypt]]
+
 
  
 
== Käyttö (BETA) ==
 
== Käyttö (BETA) ==
Rivi 51: Rivi 51:
  
 
Lisää sertifikaatit webserverin konfiguraatioon ja käynnistä uudelleen.
 
Lisää sertifikaatit webserverin konfiguraatioon ja käynnistä uudelleen.
 +
 +
== Asenna sertifikaatti webpalvelimelle ==
 +
 +
Webpalvelimelle asennus on helppoa. Let's Encrypt osaa Apachelle tehdä valmiit konfiguraatiot mutta ohjeemme on tehty yleisellä tasolla monelle webpalvelimelle.
 +
 +
=== Apachelle ===
 +
 +
Tässä on esimerkki Vhost konfiguraatio Apachelle.
 +
 +
<pre>
 +
<VirtualHost *:443>
 +
ServerName www.example.org
 +
ServerAlias www.example.org
 +
DocumentRoot /var/www/
 +
 +
<Directory /var/www/>
 +
        Options +Includes -Indexes FollowSymLinks -MultiViews
 +
        AllowOverride All
 +
</Directory>
 +
 +
CustomLog ${APACHE_LOG_DIR}/access.log combined
 +
ErrorLog ${APACHE_LOG_DIR}/error.log
 +
LogLevel warn
 +
 +
SSLEngine on
 +
SSLCertificateFile    /etc/letsencrypt/live/example.org/cert.pem
 +
SSLCertificateKeyFile /etc/letsencrypt/live/example.org/privkey.pem
 +
SSLCertificateChainFile /etc/letsencrypt/live/example.org/fullchain.pem
 +
</VirtualHost>
 +
</pre>
  
 
[[Luokka:Linux|Letsencrypt]]
 
[[Luokka:Linux|Letsencrypt]]

Versio 28. marraskuuta 2015 kello 16.44

Let's Encrypt on uusi Certificate Authority. Se on ilmainen, automaattinen sekä avoin.

Asennus

Asenna Git ja tämän jälkeen ajaa seuraava komento

 aptitude install git
 git clone https://github.com/letsencrypt/letsencrypt
 cd letsencrypt

Asenna ja käynnistä asiakas ohjelmisto

 ./letsencrypt-auto

Apua saat komennolla

 ./letsencrypt-auto --help

Sertifikaatit löytyvät täältä /etc/letsencrypt/keys ja /etc/letsencrypt/archive arkistoroituna ja /etc/letsencrypt/live löytyvät uusimmat.

Sieltä löytyy tiedostot

 privkey.pem -> Privaattiavain. Älä jaa tätä kenelekkään!
 chain.pem -> Kaikki sertifikaatit ovat tässä, eli palvelin, root sekä väli sertifikaatti. 
 fullchain.pem -> Tässä on kaikki sertifikaatit, lisäksi palvelin sertifikaatti.

Päivittäminen (BETA)

Siirry letsencrypt hakemistoon

 cd letsencrypt
 git pull
 ./letsencrypt-auto --agree-dev-preview --server https://acme-v01.api.letsencrypt.org/directory


Käyttö (BETA)

Siirry letsencrypt hakemistoon

 cd letsencrypt

Luo sertifikaatti tällä komennolla. Sinulla tulee olla DNS record (A) määritetty tähän palvelimeen missä ajat letsencrypt sovellusta. Sammuta muu webserveri pois käytöstä väliaikaisesti.

./letsencrypt-auto certonly -a standalone  \
-d example.com -d www.example.com -d intra.example.com \
--server https://acme-v01.api.letsencrypt.org/directory --agree-dev-preview

Lisää sertifikaatit webserverin konfiguraatioon ja käynnistä uudelleen.

Asenna sertifikaatti webpalvelimelle

Webpalvelimelle asennus on helppoa. Let's Encrypt osaa Apachelle tehdä valmiit konfiguraatiot mutta ohjeemme on tehty yleisellä tasolla monelle webpalvelimelle.

Apachelle

Tässä on esimerkki Vhost konfiguraatio Apachelle.

<VirtualHost *:443>
ServerName www.example.org
ServerAlias www.example.org
DocumentRoot /var/www/

<Directory /var/www/>
        Options +Includes -Indexes FollowSymLinks -MultiViews
        AllowOverride All
</Directory>

CustomLog ${APACHE_LOG_DIR}/access.log combined
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn

SSLEngine on
SSLCertificateFile    /etc/letsencrypt/live/example.org/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.org/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/example.org/fullchain.pem
</VirtualHost>
Mainos / Advertisement: