Readme
# Overview
WordPress is a powerful blogging platform written in PHP. This charm aims to deploy WordPress in a fashion that will allow anyone to scale and grow out
a single installation.
# Installation
This charm is available in the Juju Charm Store, to deploy you'll need at a minimum: a cloud environment, a working Juju installation,
and a successful bootstrap. Please refer to the [Juju Getting Started](https://juju.ubuntu.com/docs/getting-started.html) documentation before continuing.
Once bootstrapped, deploy the MySQL charm then this WordPress charm:
juju deploy mysql
juju deploy wordpress
Add a relation between the two of them
juju add-relation wordpress mysql
Expose the WordPress installation
juju expose wordpress
# Configuration
This WordPress charm comes with several tuning levels designed to encompass the different styles in which this charm will be used.
## Tuning
A use case for each tuning style is outlined below:
### Bare
The Bare configuration option is meant for those who wish to run the stock WordPress setup with no caching, no manipulation of data,
and no additional scale out features enabled. This is ideal if you intend to install additional plugins to deal with coordinating
WordPress units or simply wish to test drive WordPress as it is out of the box. This will still create a load-balancer when an additional
unit is created, though everything else will be turned off (WordPress caching, APC OpCode caching, and NFS file sharing).
To run this WordPress charm under a bare tuning level execute the following:
juju set wordpress tuning=bare
### Single
When running in Single mode, this charm will make every attempt to provide a solid base for your WordPress install. By running in single
the following will be enabled: Nginx microcache, APC OpCode caching, WordPress caching module, and the ability to sync files via NFS.
While Single mode is designed to allow for scaling out, it's meant to only scale out for temporary relief; say in the event of a large
traffic in-flux. It's recommended for long running scaled out versions that optimized is used. The removal of the file share speeds up
the site and servers ensuring that the most efficient set up is provided.
To run this WordPress charm under a single tuning level execute the following:
juju set wordpress tuning=single
### Optimized
If you need to run WordPress on more than one instance constantly, or require scaling out and in on a regular basis, then Optimized is the
recommended configuration. When you run WordPress under an Optimized tuning level, the ability to install, edit, and upgrade themes and plugins
is disabled. By doing this the charm can drop the need for an NFS mount which is inefficient and serve everything from it's local disk.
Everything else provided in Single level is available. In order to install or modify plugins with this setup you'll need to edit and commit
them to a forked version of the charm in the files/wordpress/ directory.
To run this WordPress charm under an optimized tuning level execute the following:
juju set wordpress tuning=optimized
## wp-content
In order to allow for custom WordPress content within the Juju charm a separate configuration option exists for pointing to any Git or Bzr
repository. An example of a valid formed wp-content repository can be found on the [Juju Tools Github page](https://github.com/jujutools/wordpress-site).
To set the wp-content directive to a git repository, use one of the following formats making sure to replace items like `host`, `path`, and `repo` with their
respective names:
juju set wordpress wp-content=git@host:path/repo.git
or
juju set wordpress wp-content=http://host/path/repo.git
or
juju set wordpress wp-content=git://host/path/repo.git
If you wish to use a bzr repository, then apply one of the following schemes replacing items like `host`, `username`, `path`, and `repo` with their respective values:
For LaunchPad hosted repostiories:
juju set wordpress wp-content=lp:~username/path/repo
For other Bzr repositories:
juju set wordpress wp-content=bzr://host/path/repo
or
juju set wordpress wp-content=bzr+ssh://host/path/repo
Setting the wp-content option to an empty string ("") will result in no further updates being pulled from that repository; however, the last pull will remain
on the system and will not be removed.
## debug
This option will create a directory `_debug` at the root of each unit (`http://unit-address/_debug`). In this directory are two scripts: info.php (`/_debug/info.php`)
and apc.php (`/_debug/apc.php`). info.php is a simple phpinfo script that will outline exactly how the environment is configured. apc.php is the APC admin portal which
provides APC caching details in addition to several administrative functions like clearing the APC cache. This should never be set to "yes" in production as it exposes
detailed information about the environments and may provide a way for an intruder to DDoS the machine.
juju set wordpress debug=yes
to disable debugging:
juju set wordpress debug=no
The debugging is disabled by default.
# Caveats
## Single mode and the scale-out
If you're in Single mode and you want to/need to scale out, but you've been upgrading, modifying, and installing plugins + themes like
a normal WordPress user on a normal install; you can still scale out but you'll need to deploy a shared-fs charm first. At the time of
this writing only the NFS charm will work, but as more shared-fs charms come out (gluster, ceph, etc) that provide a shared-fs/mount
interface those should all work as well. In this example we'll use NFS:
juju deploy nfs
juju add-relation nfs wordpress:nfs
By doing so, everything in the wp-contents directory is moved to this NFS mount and then shared to all future WordPress units. It's strongly
recommended that you first deploy the nfs mount, _then_ scale WordPress out. Failure to do so may result in data loss. Once nfs is deployed,
running, and related you can scale out the WordPress unit using the following command:
juju add-unit wordpress
In the event you want more than one unit at a time (and do not wish to run the add-unit command multiple times) you can supply a `-n` number
of units to add, so to add three more units:
juju add-unit -n3 wordpress
## I want more caching, I want MEMCACHING!
Why not? We could ALL use more caching. Deploy a memcached server and relate it to your WordPress service to add memcache caching. This will
automagically install [WP-FFPC](http://wordpress.org/extend/plugins/wp-ffpc/) (regardless of your tuning settings) and configure it to cache
rendered pages to the memcache server. In addition to this layer of caching, Nginx will be pull directly from memcache bypassing PHP altogether.
You could theoretically do this, then turn off php5-fpm on all your servers and just have Nginx serve static content during peak times
(though, you wouldn't be able to access the admin panel or any uncached pages - it's just a potential scenario).
juju deploy memcached
juju add-relation memcached wordpress
This setup will also synchronize the flushing of cache across all WordPress nodes, making it idea to avoid stale caches.
## I don't want to run three different machines for one WP install
There is a "hack" that will allow you to deploy multiple full services to the same machine as the bootstrap node, this has nothing to do with
the charm, but it's something that comes up more than once. Use this, of course, at your own risk. At any time the Juju developers may smart
up and decide to remove this configuration option from the `environments.yaml` file. Prior to your first deployment you'll need to add the
following line to your Juju Environments file:
placement: local
This will say "Everything that you deploy, will go on the bootstrap node". Make sure you plan to have a big enough bootstrap node to house
both your database and WordPress install. After you've bootstrap'd the environment, deploy the MySQL and WordPress charms like you normally
would. Instead of seeing three nodes you'll only see one, but both of your services will have been deployed. *FROM THIS POINT* you should
either remove or comment out the `placement` line in the environments file. This will prevent issues from occurring when you try to deploy
additional services or try to scale out existing services.
Changes
| 2012/08/26 Marco Ceppi Fix so that php5-fpm can run on t1.micro and standard.xsmall instances (revno 58) |
| 2012/08/25 Marco Ceppi Fixes to sed lines for compatibility? (revno 57) |
| 2012/08/24 Marco Ceppi Memcache support
* Nginx + memcache
* WordPress + memcache
* wp-cli support (revno 56) |
| 2012/08/24 Marco Ceppi * Nginx as a webserver
* Allow for scale-out with nginx
* Track Themes, Plugins, and other custom fi (revno 55) |
| 2012/06/18 Clint Byrum Fixing so wordpress is configured as the only thing on port 80 (revno 54) |
| 2012/06/18 Clint Byrum fixing website relation for providers who set invalid hostnames (local) (revno 53) |
| 2012/05/22 Clint Byrum setting maintainer (revno 52) |
| 2011/10/18 Clint Byrum need pwgen in the extremely lean ubuntu created by local provider (revno 51) |
| 2011/10/14 kapil.thangavelu@canonical.com pull from juju trunk, bashify, and include open-port call (revno 50) |