From 393f2c7034760173fb8c63c6e4041ffe2582ad57 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 27 Feb 2024 16:31:27 +0100 Subject: [PATCH] Open port 80 for acme verification --- manifests/portal.pp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/manifests/portal.pp b/manifests/portal.pp index cd77f2b..665329a 100644 --- a/manifests/portal.pp +++ b/manifests/portal.pp @@ -40,4 +40,9 @@ class sunetdrive::portal ( from => '0.0.0.0/0', port => 443, } + # For acme and redirect + sunet::misc::ufw_allow { 'http': + from => '0.0.0.0/0', + port => 80, + } }