Skip to content

Commit

Permalink
feat(hosts/tower): allow xdebug ports
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelreyrol committed May 19, 2024
1 parent eba7e56 commit 192f4c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hosts/tower/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,9 @@

# expo.dev
networking.firewall.interfaces.eno1.allowedTCPPorts = [ 8081 ];

# Allow Docker containers to reach PHPStorm debugging sessions
networking.firewall = {
extraCommands = "iptables -I nixos-fw -p tcp -m tcp -m multiport --dports 9000:9003 -j ACCEPT";
};
}

0 comments on commit 192f4c5

Please sign in to comment.