I'm configuring a Vagrant box (Ubuntu) with a puppet manifest - Everything is working except when I visit a site on the Vagrant host I get an error:
Invalid command 'Header'
Which I believe is due to Apache's mod_header not being loaded. The puppet manifest for apache2 is simple:
class { 'apache2':
document_root => '/path/to/docroot',
}
How do I tell puppet to provision the Vagrant box to enable mod_headers?