velaluqa-phpmyadmin

Setup phpmyadmin with puppet, always up-to-date using git, proudly without Apache config


Keywords
phpmyadmin
License
GPL-3.0
Install
puppet module install velaluqa-phpmyadmin --version 1.0.0

Documentation

UNMAINTAINED

Since we stopped using puppet for our infrastructure, we are not going to maintain this solution anymore.

Puppet-phpmyadmin

A puppet module to easily deploy phpmyadmin. Make sure you have a correct php5 installation. This module only clones the latest phpmyadmin repository state and creates the correct configuration file.

You may have to install php5-fpm (via puppet-php) and configure your web server (e.g. puppet-nginx)

Suggested Preparation

This module is as simple as possible. You should be able to choose your own php installation. This is my own, which works quite fine, as I find:

  1. First I install the nodes/php module.
puppet module install nodes/php
  1. Using this module I install the necessary php packages. For serving php I use php-fpm with nginx.
class { 'php::extension::mysql': }
class { 'php::extension::mcrypt': }
class { 'php::fpm::daemon':
  ensure => running
}
  1. Then I install phpmyadmin. See [[Usage]].

  2. To install and configure nginx I use the puppetlabs/nginx module.

puppet module install puppetlabs/nginx
  1. At last you may set up your vhost. This is depending on the server module you are using.

Installation

Install the module with

puppet module install velaluqa/phpmyadmin

Usage

  class { 'phpmyadmin':
    path     => "/srv/phpmyadmin",
    user     => "www-data",
    revision => "origin/RELEASE_4_0_9",
    servers  => [
      {
        desc => "local",
        host => "127.0.0.1",
      },
      {
        desc => "other",
        host => "192.168.1.30",
      }
    ]
  }

Contribute

Want to help - send a pull request.