diff --git a/m/hut/nginx.nix b/m/hut/nginx.nix index 696ce017..97afc3a6 100644 --- a/m/hut/nginx.nix +++ b/m/hut/nginx.nix @@ -17,13 +17,14 @@ let }; in { + networking.firewall.allowedTCPPorts = [ 80 ]; services.nginx = { enable = true; virtualHosts."jungle.bsc.es" = { root = "${website}"; listen = [ { - addr = "127.0.0.1"; + addr = "0.0.0.0"; port = 80; } ];