dev/provisioning/modules/apache/examples/mods_custom.pp
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     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