update fw settings

This commit is contained in:
Arne Teuke
2025-01-27 11:42:25 +01:00
parent 4a84735c6a
commit 61e2e47b99
3 changed files with 4 additions and 4 deletions

View File

@@ -31,13 +31,13 @@ class cd_haproxy::firewall::iptables (
firewall { "${hy_fw_order_no}${hy_http_port} tcp port ${hy_http_port}":
proto => 'tcp',
dport => $hy_http_port,
action => 'accept',
jump => 'accept',
}
firewall { "${hy_fw_order_no}${hy_https_port} tcp port ${hy_https_port}":
proto => 'tcp',
dport => $hy_https_port,
action => 'accept',
jump => 'accept',
}
}
}

View File

@@ -26,6 +26,6 @@ class cd_haproxy::main::config (
) inherits cd_haproxy::params {
include cd_haproxy::server::service
include cd_haproxy::server::proxy_test
# include cd_haproxy::server::proxy_test
}

View File

@@ -80,7 +80,7 @@ class cd_haproxy::params (
$pkg_ensure = 'latest',
$reqpackages = ['haproxy'],
$hy_host_fqdn = "proxy.${::domain}",
$hy_host_fqdn = undef,
# firewall
$hy_manage_fw = true,