Letsencrypt » Historie » Version 2
Jeremias Keihsler, 19.06.2018 06:40
1 | 1 | Jeremias Keihsler | h1. Letsencrypt |
---|---|---|---|
2 | |||
3 | link-list: |
||
4 | |||
5 | https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-centos-7 |
||
6 | https://www.centosblog.com/use-letsencrypt-free-ssl-certificate-centos-linux/ |
||
7 | https://www.my-it-brain.de/wordpress/der-eigene-mailserver-tls-migration-zu-lets-encrypt/ |
||
8 | https://www.kuketz-blog.de/certbot-lets-encrypt-tls-zertifikate-fuer-mailserver/ |
||
9 | https://blog.tausys.de/2016/07/13/letsencrypt-zertifikate-fuer-dovecot-und-postfix/ |
||
10 | https://community.letsencrypt.org/t/certs-for-mailserver-different-from-webserver/32216/7 |
||
11 | https://community.letsencrypt.org/t/1-certificate-for-6-domains/49471 |
||
12 | https://community.letsencrypt.org/t/multiple-domains-webroot-paths-using-webroot-plugin/7982/5 |
||
13 | https://community.letsencrypt.org/t/installed-correctly-but-still-says-certificate-error-using-edge/49453/2 |
||
14 | 2 | Jeremias Keihsler | |
15 | |||
16 | taken from https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-centos-7 |
||
17 | |||
18 | * epel |
||
19 | |||
20 | yum install epel-release |
||
21 | |||
22 | *install |
||
23 | |||
24 | yum install httpd mod_ssl python-certbot-apache |
||
25 | |||
26 | yum install certbot |
||
27 | |||
28 | * apache service |
||
29 | |||
30 | systemctl start httpd |
||
31 | systemctl enable httpd |
||
32 | |||
33 | * firewall |
||
34 | |||
35 | firewall-cmd --permanent --zone=public --add-service=http |
||
36 | firewall-cmd --permanent --zone=public --add-service=https |
||
37 | firewall-cmd --reload |
||
38 | |||
39 | * test apache service |
||
40 | |||
41 | curl example.com |
||
42 | curl -k https://example.com |
||
43 | |||
44 | certbot --apache -d example.com -d www.example.com |