about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTomas Antonio Lopez <entropy.overseer@entropic.network>2023-11-30 16:05:00 +0100
committerTomas Antonio Lopez <entropy.overseer@entropic.network>2023-12-01 00:31:37 +0100
commit33c13e9e4d1a6b5ff50fe33edbd0835ef254b236 (patch)
treec28e3af66fc5f0be72f44492cdba962aac0ee3e4 /nixos
parent3943aa57c0a1c346a15fae7b911a358c5da3364d (diff)
downloadnixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar.gz
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar.bz2
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar.lz
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar.xz
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.tar.zst
nixlib-33c13e9e4d1a6b5ff50fe33edbd0835ef254b236.zip
nixosTests.sourcehut: listen on port 80, as well
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/sourcehut/sourcehut.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/sourcehut/sourcehut.nix b/nixos/tests/sourcehut/sourcehut.nix
index b81767470e41..1b73fb763e81 100644
--- a/nixos/tests/sourcehut/sourcehut.nix
+++ b/nixos/tests/sourcehut/sourcehut.nix
@@ -103,7 +103,7 @@ in
       };
     };
 
-    networking.firewall.allowedTCPPorts = [ 443 ];
+    networking.firewall.allowedTCPPorts = [ 80 443 ];
     security.pki.certificateFiles = [ "${tls-cert}/cert.pem" ];
     services.nginx = {
       enable = true;