Add xinetd configs
This commit is contained in:
parent
497ec387da
commit
7b5188125f
1 changed files with 18 additions and 5 deletions
|
@ -1,8 +1,21 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
|
networking.firewall.allowedUDPPorts = [
|
||||||
|
3478 # Headscale DERP UDP
|
||||||
|
10000 # Jitsi
|
||||||
|
];
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
80
|
80 # HTTP
|
||||||
443
|
443 # HTTPS
|
||||||
8080
|
25 # SMTP (explicit TLS => STARTTLS)
|
||||||
|
465 # ESMTP (implicit TLS)
|
||||||
|
587 # ESMTP (explicit TLS => STARTTLS)
|
||||||
|
143 # IMAP4 (explicit TLS => STARTTLS)
|
||||||
|
993 # IMAP4 (implicit TLS)
|
||||||
|
4190 # Sieve support
|
||||||
|
42420 # Vintage Story
|
||||||
|
25565 # Minecraft
|
||||||
|
1443 # Headscale DERP
|
||||||
|
4443 # jitsi-jvb
|
||||||
];
|
];
|
||||||
|
|
||||||
services.xinetd = {
|
services.xinetd = {
|
||||||
|
|
Loading…
Reference in a new issue