Changes between Version 6 and Version 7 of WordPress/MultiSite
- Timestamp:
- 09/24/17 21:27:51 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WordPress/MultiSite
v6 v7 88 88 }}} 89 89 90 == Cloudflare == 91 Cloudflare offers DDOS protection, it also hides the real identity of your server 92 93 To get all your traffic directed through cloudflare the dns needs to be managed by them, so transfer these entries. 94 Once that is done enable Edge Certificates for these domains, if you don't you'll have trouble getting the letsencrypt certificates and there will be funny ssl redirect errors for your site. 95 90 96 == SSL certificates == 91 97 It's nowadays easy to get valid SSL certificates if you chose for letsencrypt.org certificates. … … 95 101 yum install certbot-apache 96 102 }}} 97 M ke sure certbot can read the contents of /.well-known/acme-challenge/ by adding the following line to the apache configuration103 Make sure certbot can read the contents of /.well-known/acme-challenge/ by adding the following line to the apache configuration 98 104 {{{ 99 105 Alias /.well-known/acme-challenge/ /var/www/html/.well-known/acme-challenge/ 100 106 }}} 107 Generate the ssl configuration: 108 {{{ 109 certbot --apache 110 }}} 101 111 112