open slsk ports on wireguard

This commit is contained in:
xunuwu 2025-02-18 12:15:25 +01:00
parent 825e37c4d4
commit b1a8de505b
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
2 changed files with 14 additions and 1 deletions

View file

@ -56,6 +56,10 @@ in {
port = config.services.slskd.settings.soulseek.listen_port; port = config.services.slskd.settings.soulseek.listen_port;
protocol = "both"; protocol = "both";
} }
{
port = config.services.slskd.settings.soulseek.listen_port + 1;
protocol = "both";
}
{ {
port = config.services.transmission.settings.peer-port; port = config.services.transmission.settings.peer-port;
protocol = "both"; protocol = "both";

View file

@ -13,7 +13,16 @@
accessibleFrom = ["192.168.0.0/24"]; accessibleFrom = ["192.168.0.0/24"];
# Forwarded to my vpn, for making things accessible from outside # Forwarded to my vpn, for making things accessible from outside
openVPNPorts = []; openVPNPorts = [
{
port = 14794;
protocol = "both";
}
{
port = 14795;
protocol = "both";
}
];
# From inside of the vpn namespace to outside of it, for making things inside accessible to LAN # From inside of the vpn namespace to outside of it, for making things inside accessible to LAN
portMappings = []; portMappings = [];