Skip to content

a simple example of docker wordpress with a SSL nginx-reverse-proxy and mysql database backend

Notifications You must be signed in to change notification settings

ronamosa/docker-wordpress-nginx-ssl-mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker WordPress, NGINX+SSL, MySQL Database.

Description

A quick example of dockerized wordpress setup with an NGINX reverse-proxy frontend doing the SSL termination, and a standard MySQL database backend.

Pre-requisites

  • docker installed locally
  • docker-compose installed locally

Setup

You'll need to do a few things to get this up & running on your local environment.

  1. create your certs by going into 'certs/' and running certs.sh.
  2. copy the certs/whateveryoursiteis.cert and certs/whateveryoursiteis.key to 'nginx/ssl/'.
  3. run docker-compose up if you want to see all the start-up logs
  4. or docker-compose up -d if you want to background.

Setup Wordpress

As this was a local setup for me, the server_name of 'www.mywordpress.local' was just an entry in my local /etc/hosts.

127.0.0.1 www.mywordpress.local

Key Points

this 'wordpress'

proxy_pass http://wordpress;

refers to the wordpress service in your docker-compose.yml file.

this part in your default.conf:

        proxy_set_header      Host $host;
        proxy_set_header      X-Real-IP $remote_addr;
        proxy_set_header      X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header      X-Forwarded-Host $server_name;
        proxy_set_header      X-Forwarded-Proto https;

helps this part in your wp-config.php to work:

if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
        $_SERVER['HTTPS'] = 'on';
}

this is where we're trying to force HTTPS at all times. The 301 redirect in default.conf for requests to port 80 also helps.

Footnotes

obviously get some proper SSL certs for your own site, but this is a good miniature model of how the docker pieces fit together.

About

a simple example of docker wordpress with a SSL nginx-reverse-proxy and mysql database backend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages