summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/jetty/http.pp
blob: 4c0652bec86351b7a6558d907ed21ea17310c5d8 (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';
    }
}