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