aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/jetty/http.pp
blob: be19622cadd8179c79f046e40342bae2cef4fa90 (plain)
1
2
3
4
5
6
7
8
9
class shorewall::rules::jetty::http {
    # dnat
    shorewall::rule {
        'dnat-http-to-jetty':
            destination     =>      "net:${ipaddress}:8080",
            destinationport =>      '80',
            source          =>      'net', proto => 'tcp', order => 140, action => 'DNAT';
    }
}