bifrost: allow QUIC

This commit is contained in:
Adithya 2024-11-21 10:50:31 +05:30
parent e8b036a4e7
commit e9aab1b3bd
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 1 additions and 1 deletions

View file

@ -1,6 +1,5 @@
_: { _: {
networking = { networking = {
firewall.allowedTCPPorts = [ 42069 ];
nftables = { nftables = {
enable = true; enable = true;
ruleset = '' ruleset = ''

View file

@ -22,5 +22,6 @@
}; };
systemd.services.caddy.serviceConfig.EnvironmentFile = config.sops.secrets."caddy/env_file".path; systemd.services.caddy.serviceConfig.EnvironmentFile = config.sops.secrets."caddy/env_file".path;
networking.firewall.allowedTCPPorts = [ 80 443 ]; networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.firewall.allowedUDPPorts = [ 80 443 ];
} }