Defined Type: apache::fastcgi::server

Defined in:
manifests/fastcgi/server.pp

Summary

Defines one or more external FastCGI servers to handle specific file types. Use this defined type with `mod_fastcgi`.

Overview

Parameters:

  • host (String) (defaults to: '127.0.0.1:9000')

    Determines the FastCGI’s hostname or IP address and TCP port number (1-65535).

  • timeout (Integer) (defaults to: 15)

    Sets the number of seconds a [FastCGI](www.fastcgi.com/) application can be inactive before aborting the request and logging the event at the error LogLevel. The inactivity timer applies only as long as a connection is pending with the FastCGI application. If a request is queued to an application, but the application doesn’t respond by writing and flushing within this period, the request is aborted. If communication is complete with the application but incomplete with the client (the response is buffered), the timeout does not apply.

  • flush (Boolean) (defaults to: false)

    Forces ‘mod_fastcgi` to write to the client as data is received from the application. By default, `mod_fastcgi` buffers data in order to free the application as quickly as possible.

  • faux_path (Stdlib::Absolutepath) (defaults to: "/var/www/${name}.fcgi")

    Apache has FastCGI handle URIs that resolve to this filename. The path set in this parameter does not have to exist in the local filesystem.

  • fcgi_alias (Stdlib::Unixpath) (defaults to: "/${name}.fcgi")

    Internally links actions with the FastCGI server. This alias must be unique.

  • file_type (String) (defaults to: 'application/x-httpd-php')

    Sets the MIME ‘content-type` of the file to be processed by the FastCGI server.

  • pass_header (Optional[String]) (defaults to: undef)

    Sets a header for the server



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
# 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
  }

  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 => template('apache/fastcgi/server.erb'),
    require => Exec["mkdir ${apache::confd_dir}"],
    before  => File[$apache::confd_dir],
    notify  => Class['apache::service'],
  }
}