Added fcgid and wsgi modules to apache.
This commit is contained in:
parent
2f90909d9d
commit
0e1976f08c
1 changed files with 32 additions and 0 deletions
|
@ -425,6 +425,22 @@ class apache::mod::auth_kerb {
|
|||
}
|
||||
|
||||
|
||||
# Install mod_fcgid.
|
||||
#
|
||||
class apache::mod::fcgid {
|
||||
|
||||
package { "mod_fcgid":
|
||||
ensure => installed,
|
||||
require => Package["httpd"],
|
||||
}
|
||||
|
||||
apache::configfile { "fcgid.conf":
|
||||
require => Package["mod_fcgid"],
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install mod_perl.
|
||||
#
|
||||
class apache::mod::perl {
|
||||
|
@ -471,3 +487,19 @@ class apache::mod::python {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install mod_wsgi.
|
||||
#
|
||||
class apache::mod::wsgi {
|
||||
|
||||
package { "mod_wsgi":
|
||||
ensure => installed,
|
||||
require => Package["httpd"],
|
||||
}
|
||||
|
||||
apache::configfile { "wsgi.conf":
|
||||
require => Package["mod_wsgi"],
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue