open http/https ports
parent
136fc2b70a
commit
d7ab36f43d
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
<nixpkgs/nixos/modules/virtualisation/openstack-config.nix>
|
||||
./gandicloud.nix
|
||||
./networking.nix
|
||||
./forgejo.nix
|
||||
];
|
||||
|
||||
|
@ -13,6 +14,4 @@
|
|||
git tig
|
||||
wget
|
||||
];
|
||||
|
||||
# networking.firewall.enable = false;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{ lib, pkgs, config, ... }:
|
||||
{
|
||||
networking = {
|
||||
# firewall.enable = false;
|
||||
firewall.interfaces.allowedTCPPorts = [ 80 443 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue