phpfpm service: fix formatting of example

This commit is contained in:
Leroy Hopson 2015-07-04 18:51:38 +12:00
parent eb90705d45
commit 25fd9e31a2

View File

@ -52,18 +52,19 @@ in {
poolConfigs = mkOption { poolConfigs = mkOption {
type = types.attrsOf types.lines; type = types.attrsOf types.lines;
default = {}; default = {};
example = { example = literalExample ''
mypool = '' { mypool = '''
listen = /run/phpfpm/mypool listen = /run/phpfpm/mypool
user = nobody user = nobody
pm = dynamic pm = dynamic
pm.max_children = 75 pm.max_children = 75
pm.start_servers = 10 pm.start_servers = 10
pm.min_spare_servers = 5 pm.min_spare_servers = 5
pm.max_spare_servers = 20 pm.max_spare_servers = 20
pm.max_requests = 500 pm.max_requests = 500
''; ''';
}; }
'';
description = '' description = ''
A mapping between PHP FPM pool names and their configurations. A mapping between PHP FPM pool names and their configurations.
See the documentation on <literal>php-fpm.conf</literal> for See the documentation on <literal>php-fpm.conf</literal> for