Skip to content

Instantly share code, notes, and snippets.

@johnmccabe
johnmccabe / apachetest.pp
Last active December 22, 2015 14:58
Checking how to install php with apache using puppetlabs-apache
class { 'apache':
default_vhost => false,
mpm_module => prefork
}
include apache::mod::rewrite
include apache::mod::php
apache::vhost { "www.testdomain.com":
vhost_name => '*',