Forge Home

wordpressnginx

This module configures only nginx site and php-fpm for wordpress.

9,022 downloads

9,022 latest version

1.9 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.0 (latest)
released Feb 18th 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'braiins-wordpressnginx', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add braiins-wordpressnginx
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install braiins-wordpressnginx --version 0.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

braiins/wordpressnginx — version 0.1.0 Feb 18th 2015

wordpressnginx

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with wordpressnginx
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

This module is able to configure an arbitrary number of wordpress virtual hosts with nginx as frontend web server.

Module Description

Wordpress is a blogging and website content management system. The module configures nginx virtual host for each specified wordpress site. It also deploys/configures php-fpm package. It is NOT resposible for deployment or configuration of the actual wordpress instance.

Setup

What wordpressnginx affects

  • The module optionally deploys a global nginx server configuration (if not already provided by some other module)
  • Actual set of nginx wordpress sites.

Setup Requirements

When nginx has not been deployed and setup yet, the following deploys it:

   class { 'wordpressnginx':
   }

Usage

The snippet below deploys 1 nginx virtual host for wordpress.

# PHP fpm deployment
class { 'wordpressnginx::php_fpm':
} ->

# virtual host for nginx
wordpressnginx::vhost { 'braiins.cz':
  docroot                  => $www_site_braiins_docroot,
  port                     => '80',
  serveraliases            => [ 'braiins.cz' ],
  require                  => File[$www_site_braiins_docroot],
  enable_wp_admin_host_acl => true,
  wp_admin_host_acl        => [ '1.2.3.4', ],
}

Reference

Classes:

Limitations

This module has only been tested on Debian.

Development

Patches and improvements are welcome as pull requests for the central project github repository.