From 8aa478ba85df9f86a77699a044f4aec36884ba9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bj=C3=B6rklund?= Date: Thu, 14 Nov 2024 14:50:44 +0100 Subject: [PATCH] Open up http --- .../etc/puppet/modules/soc/manifests/intelmq.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp index fe6625f..12b0f00 100644 --- a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp +++ b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp @@ -153,4 +153,14 @@ class soc::intelmq( creates => '/etc/apache2/sites-enabled/intelmq-vhost.conf', notify => Service['apache2'], } + + sunet::nftables:allow { 'allow_http': + from => any, + port => 80, + } + + sunet::nftables:allow { 'allow_https': + from => any, + port => 443, + } }