0ae699c73d59a24bc9d5f18e9cbff46d6563cbaa
[mirror/dsa-puppet.git] / 3rdparty / modules / apache / tests / mods_custom.pp
1 ## custom mods
2
3 # Base class. Declares default vhost on port 80 and default ssl
4 # vhost on port 443 listening on all interfaces and serving
5 # $apache::docroot, and declaring a custom set of modules.
6 class { 'apache':
7   default_mods => [
8     'info',
9     'alias',
10     'mime',
11     'env',
12     'setenv',
13     'expires',
14   ],
15 }
16