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