Configuring WordPress HTTPS using Cloudflare

So I just found out today that Cloudflare provides free HTTPS/SSL support. I’ve been using Cloudflare free account for many years and it works flawlessly. In fact this WordPress powered blog and my several other sites use Cloudflare services. With the addition of HTTPS/SSL, I …

Read moreConfiguring WordPress HTTPS using Cloudflare

Configuring GD and Freetype on WordPress Docker Image

This applies to official WordPress image but can be used with PHP image also. Create Dockerfile with following contents: FROM wordpress:latest # Install gd and freetype RUN apt-get -y update \ && apt-get -y install php5-gd freetype* \ && docker-php-ext-configure gd –with-freetype-dir=/usr/include/ –with-jpeg-dir=/usr/include/ \ && …

Read moreConfiguring GD and Freetype on WordPress Docker Image