Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

mw_php_fpm (1) Versions 0.1.0

Installs/Configures mw_php

Policyfile
Berkshelf
Knife
cookbook 'mw_php_fpm', '~> 0.1.0', :supermarket
cookbook 'mw_php_fpm', '~> 0.1.0'
knife supermarket install mw_php_fpm
knife supermarket download mw_php_fpm
README
Dependencies
Quality 17%

mw_php_fpm library cookbook

Build Status

As many applications depends on older PHP versions, sometimes, the only way to
configure those applications using newer platforms is via Docker.
This cookbooks provides a resource that will abstract the way you can configure
php-fpm by native packages or using docker

Requirements

  • Chef 12+

Cookbook dependencies

  • docker
  • php-fpm

Usage

Place a dependency on the mw_php_fpm cookbook in your cookbook's metadata.rb

  depends 'mw_php_fpm', '~> 0.1.0'

Then if you want a docker php-fpm, then:

  mw_php_fpm_docker 'fpm-pool-name' do
    session_dir '/opt/myapp/fpm/session'
    prefix '/opt/myapp/current'
    listen '/opt/myapp/fpm/socket'
    user 'www-data'
    config_file '/opt/myapp/fpm/fpm.conf'
    repo '5.5-fpm'
    volumes [ '/opt/myapp:/opt/myapp' ]
  end

If you want a native php-fpm pool, then:

  mw_php_fpm 'fpm-pool-name' do
    session_dir '/opt/myapp/fpm/session'
    listen '/opt/myapp/fpm/socket'
    user 'www-data'
  end

Resources overview

mw_php_fpm

Will install php-fpm as a native package allowing to define pools of fpm

Parameters

  • name: name of resource
  • session_dir: directory where php sessions will be saved
  • session_lifetime: lifetime of php sessions. Default to 24 minutes
  • listen: socket unix path or port to listen for incoming connections
  • listen_owner: when socket unix, owner of socket file
  • listen_group: when socket unix, group of socket file
  • listen_mode: when socket unix, permission of socket file
  • allowed_clients: when tcp socket, addresses to allow connections from
  • user: user to run php-fpm pool as
  • group: group to run php-fpm pool as
  • process_manager: type of process_manager. Defaults to dynamic
  • max_children: default 30
  • start_servers: default 4
  • min_spare_servers: default 2
  • max_spare_servers: default 6
  • max_requests: default 500
  • catch_workers_output: default true
  • security_limit_extensions: default .php
  • access_log: defines access log file
  • request_terminate_timeout: default 0
  • php_options: hash of php_options to change php.ini defaults. Allways will add php_admin_value[session.save_path] set to session_dir

mw_php_fom_docker

Will install docker as a service and some image used to provide fpm service.
Useful when required php version doesn't match the one provided natively by
the running platform

Parameters

  • prefix: prefix for php-fpm
  • config_file: php-fpm template to be mounted as docker volume
  • repo: docker image to use as php-fpm
  • run_as_user: run container as specific user?. Defaults to true
  • command: command to run inside container. Defaults to php-fpm --fpm-config #{resource.config_file}"
  • volumes: array of volumes to mount as docker volumes. See docker cookbook

Dependent cookbooks

docker ~> 2.0
php-fpm ~> 0.7.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Collaborator Number Metric
            

0.1.0 failed this metric

Failure: Cookbook has 1 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

0.1.0 failed this metric

FC008: Generated cookbook metadata needs updating: mw_php_fpm/metadata.rb:2
FC008: Generated cookbook metadata needs updating: mw_php_fpm/metadata.rb:3
FC064: Ensure issues_url is set in metadata: mw_php_fpm/metadata.rb:1
FC065: Ensure source_url is set in metadata: mw_php_fpm/metadata.rb:1
FC066: Ensure chef_version is set in metadata: mw_php_fpm/metadata.rb:1
FC067: Ensure at least one platform supported in metadata: mw_php_fpm/metadata.rb:1
FC069: Ensure standardized license defined in metadata: mw_php_fpm/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

0.1.0 passed this metric

Testing File Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number