diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-25 17:23:01 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-25 17:23:01 +0100 |
| commit | 19835b9be47ba9b96b1f72c93c98e3c3866a858a (patch) | |
| tree | 17b21a488ca321fe2831229381f06ed1f32b57b5 /hosts | |
| parent | 77b23ce8e86b24e6aed30fadced85d6a2d7dd0a7 (diff) | |
Fixes in secrets and services.
Mostly fixes connection to mysql and the unix-socket auth for it.
Diffstat (limited to '')
| -rw-r--r-- | hosts/omega-relay/firewall.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/omega-relay/firewall.nix b/hosts/omega-relay/firewall.nix index 360e7da..553730e 100644 --- a/hosts/omega-relay/firewall.nix +++ b/hosts/omega-relay/firewall.nix @@ -1,4 +1,4 @@ -{ ... }: +{ config,... }: let baseTCP = [ 20 @@ -20,6 +20,7 @@ let ]; secureTCP = [ + # config.wilkuu.services.mysql.port ]; secureUDP = [ @@ -54,6 +55,7 @@ in "veth*" "vnet*" "virbr*" + "lo" ]; }; |
