Puppet Class: apache::mod::wsgi

Inherits:
::apache::params
Defined in:
manifests/mod/wsgi.pp

Summary

Installs and configures `mod_wsgi`.

Overview

Parameters:

  • wsgi_restrict_embedded (Any) (defaults to: undef)

    Enable restrictions on use of embedded mode.

  • wsgi_socket_prefix (Any) (defaults to: $::apache::params::wsgi_socket_prefix)

    Configure directory to use for daemon sockets.

  • wsgi_python_path (Any) (defaults to: undef)

    Additional directories to search for Python modules.

  • wsgi_python_home (Any) (defaults to: undef)

    Absolute path to Python prefix/exec_prefix directories.

  • wsgi_python_optimize (Any) (defaults to: undef)

    Enables basic Python optimisation features.

  • wsgi_application_group (Any) (defaults to: undef)

    Sets which application group WSGI application belongs to.

  • package_name (Any) (defaults to: undef)

    Names of package that installs mod_wsgi.

  • mod_path (Any) (defaults to: undef)

    Defines the path to the mod_wsgi shared object (.so) file.

See Also:



30
31
32
33
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
74
# File 'manifests/mod/wsgi.pp', line 30

class apache::mod::wsgi (
  $wsgi_restrict_embedded = undef,
  $wsgi_socket_prefix     = $::apache::params::wsgi_socket_prefix,
  $wsgi_python_path       = undef,
  $wsgi_python_home       = undef,
  $wsgi_python_optimize   = undef,
  $wsgi_application_group = undef,
  $package_name           = undef,
  $mod_path               = undef,
) inherits ::apache::params {
  include ::apache
  if ($package_name != undef and $mod_path == undef) or ($package_name == undef and $mod_path != undef) {
    fail('apache::mod::wsgi - both package_name and mod_path must be specified!')
  }

  if $package_name != undef {
    if $mod_path =~ /\// {
      $_mod_path = $mod_path
    } else {
      $_mod_path = "${::apache::lib_path}/${mod_path}"
    }
    ::apache::mod { 'wsgi':
      package => $package_name,
      path    => $_mod_path,
    }
  }
  else {
    ::apache::mod { 'wsgi': }
  }

  # Template uses:
  # - $wsgi_restrict_embedded
  # - $wsgi_socket_prefix
  # - $wsgi_python_path
  # - $wsgi_python_home
  file {'wsgi.conf':
    ensure  => file,
    path    => "${::apache::mod_dir}/wsgi.conf",
    mode    => $::apache::file_mode,
    content => template('apache/mod/wsgi.conf.erb'),
    require => Exec["mkdir ${::apache::mod_dir}"],
    before  => File[$::apache::mod_dir],
    notify  => Class['apache::service'],
  }
}