Files
SecGen/modules/code_examples/puppet_modules/apache/apache.pp

18 lines
412 B
Puppet

#
# apache::fastcgi::server { 'php':
# host => '127.0.0.1:9000',
# timeout => 15,
# flush => false,
# faux_path => '/var/www/php.fcgi',
# fcgi_alias => '/php.fcgi',
# file_type => 'application/x-httpd-php'
# }
#
# apache::vhost { 'www':
# custom_fragment => 'AddType application/x-httpd-php .php',
# docroot => '/var/www/wordpress'
# }
class { 'apache':
mpm_module => 'prefork'
}