22 lines
519 B
Puppet
22 lines
519 B
Puppet
class apache::mod::wsgi (
|
|
$wsgi_socket_prefix = undef,
|
|
$wsgi_python_path = undef,
|
|
$wsgi_python_home = undef,
|
|
){
|
|
::apache::mod { 'wsgi': }
|
|
|
|
# Template uses:
|
|
# - $wsgi_socket_prefix
|
|
# - $wsgi_python_path
|
|
# - $wsgi_python_home
|
|
file {'wsgi.conf':
|
|
ensure => file,
|
|
path => "${::apache::mod_dir}/wsgi.conf",
|
|
content => template('apache/mod/wsgi.conf.erb'),
|
|
require => Exec["mkdir ${::apache::mod_dir}"],
|
|
before => File[$::apache::mod_dir],
|
|
notify => Service['httpd']
|
|
}
|
|
}
|
|
|