summaryrefslogtreecommitdiff
path: root/manifests/web/lighttpd.pp
blob: 7c233fa634d94330c107e35b943c30ec38ef82bc (plain)
1
2
3
4
5
6
7
8
9
10
class git::web::lighttpd {
    include ::lighttpd 

    file{'/etc/lighttpd/conf.d/lighttpd-gitweb.conf':
        content => 'global { server.modules += ("mod_rewrite", "mod_redirect", "mod_alias", "mod_setenv", "mod_cgi" ) }',
        require => Package['lighttpd'],
        notify => Service['lighttpd'],
        owner => root, group => 0, mode => 0644;
    }
}