Changes between Version 6 and Version 7 of WordPress/MultiSite


Ignore:
Timestamp:
09/24/17 21:27:51 (7 years ago)
Author:
jorrit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WordPress/MultiSite

    v6 v7  
    8888}}}
    8989
     90== Cloudflare ==
     91Cloudflare offers DDOS protection, it also hides the real identity of your server
     92
     93To get all your traffic directed through cloudflare the dns needs to be managed by them, so transfer these entries.
     94Once 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
    9096== SSL certificates ==
    9197It's nowadays easy to get valid SSL certificates if you chose for letsencrypt.org certificates.
     
    95101yum install certbot-apache
    96102}}}
    97 Mke sure certbot can read the contents of /.well-known/acme-challenge/ by adding the following line to the apache configuration
     103Make sure certbot can read the contents of /.well-known/acme-challenge/ by adding the following line to the apache configuration
    98104{{{
    99105Alias /.well-known/acme-challenge/ /var/www/html/.well-known/acme-challenge/
    100106}}}
     107Generate the ssl configuration:
     108{{{
     109certbot --apache
     110}}}
    101111
     112