forked from runmybusiness/chef-php-fpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
46 lines (35 loc) · 1.55 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
maintainer "Sebastian Johnsson"
maintainer_email "[email protected]"
license "MIT"
description "Installs and configures PHP-FPM."
version "0.1"
attribute 'php_fpm/pid_file',
:description => 'The location of the php-fpm pid-file.',
:required => "recommended"
attribute 'php_fpm/socket',
:description => 'The location of the php-fpm socket-file.',
:required => "recommended"
attribute 'php_fpm/port',
:description => 'The port php-fpm should run on.',
:required => "recommended"
attribute 'php_fpm/listen_to',
:description => 'What php-fpm should listen to - either the specified socket or the specified port.',
:required => "recommended"
attribute 'php_fpm/user',
:description => 'Which user php-fpm should be run under (as well as the owner of the socket-file).',
:required => "recommended"
attribute 'php_fpm/group',
:description => 'Which group php-fpm should be run under (as well as the group owning the socket-file).',
:required => "recommended"
attribute 'php_fpm/mode',
:description => 'Which file permissions the socket-file should have.',
:required => "recommended"
attribute 'php_fpm/pools',
:description => 'A list of PHP FPM pool names.',
:required => "recommended"
attribute 'php_fpm/php_ini',
:description => 'Various options to tune PHP FPMs php.ini-file.',
:required => "recommended"
attribute 'php_fpm/tunable',
:description => 'Various tunable options to customize and optimize PHP FPM.',
:required => "recommended"