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