34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# File 'manifests/fastcgi/server.pp', line 34
define apache::fastcgi::server (
String $host = '127.0.0.1:9000',
Integer $timeout = 15,
Boolean $flush = false,
Stdlib::Absolutepath $faux_path = "/var/www/${name}.fcgi",
Stdlib::Unixpath $fcgi_alias = "/${name}.fcgi",
String $file_type = 'application/x-httpd-php',
Optional[String] $pass_header = undef,
) {
include apache::mod::fastcgi
Apache::Mod['fastcgi'] -> Apache::Fastcgi::Server[$title]
if $host =~ Stdlib::Absolutepath {
$socket = $host
}
$parameters = {
'timeout' => $timeout,
'flush' => $flush,
'socket' => $socket,
'host' => $host,
'pass_header' => $pass_header,
'faux_path' => $faux_path,
'fcgi_alias' => $fcgi_alias,
'file_type' => $file_type,
}
file { "fastcgi-pool-${name}.conf":
ensure => file,
path => "${apache::confd_dir}/fastcgi-pool-${name}.conf",
owner => 'root',
group => $apache::params::root_group,
mode => $apache::file_mode,
content => epp('apache/fastcgi/server.epp', $parameters),
require => Exec["mkdir ${apache::confd_dir}"],
before => File[$apache::confd_dir],
notify => Class['apache::service'],
}
}
|