Recommit for updates in build 12

This commit is contained in:
2026-02-03 15:17:30 +01:00
parent 06df06aa5b
commit 7fa8b461d2

View File

@@ -127,15 +127,15 @@ class confdroid_apache::firewall::iptables (
) inherits confdroid_apache::params {
if $ae_manage_fw == true {
firewall { "${ae_order_no}${ae_http_port} tcp http port ${ae_http_port}":
proto => ['tcp','udp'],
dport => $ae_http_port,
action => 'accept',
}
proto => ['tcp','udp'],
dport => $ae_http_port,
jump => 'accept',
}
firewall { "${ae_order_no}${ae_https_port} tcp http port ${ae_https_port}":
proto => ['tcp','udp'],
dport => $ae_https_port,
action => 'accept',
proto => ['tcp','udp'],
dport => $ae_https_port,
jump => 'accept',
}
}
}</pre>