summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/jetty/ssl.pp
blob: f7517493e9913d5c3629fd2547b9e6684e2815b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::jetty::ssl {
    shorewall::rule {
        'net-me-jettyssl-tcp':
            source          => 'net',
            destination     => '$FW',
            proto           => 'tcp',
            destinationport => '8443',
            order           => 240,
            action          => 'ACCEPT';
    }
}