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