aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/vhost/reverse_proxy.pp
blob: a32aaff03fb7d4f9516b0777bc770ea6e1d63c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
define apache::vhost::reverse_proxy($url,
                                    $vhost = false,
                                    $use_ssl = false,
                                    $content = '') {
    include apache::mod::proxy
    apache::vhost::base { $name:
        use_ssl => $use_ssl,
        vhost   => $vhost,
        content => template('apache/vhost_reverse_proxy.conf')
    }
}