l yellow.r: use magnetico

This commit is contained in:
lassulus 2022-11-17 12:59:24 +01:00
parent 9e2d1213b8
commit 417439de5c

View File

@ -154,6 +154,7 @@ with import <stockholm/lib>;
tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport 80"; target = "ACCEPT"; } # nginx web dir
{ predicate = "-p tcp --dport 9091"; target = "ACCEPT"; } # transmission-web
{ predicate = "-p tcp --dport 9092"; target = "ACCEPT"; } # magnetico webinterface
{ predicate = "-p tcp --dport 51413"; target = "ACCEPT"; } # transmission-traffic
{ predicate = "-p udp --dport 51413"; target = "ACCEPT"; } # transmission-traffic
{ predicate = "-p tcp --dport 8096"; target = "ACCEPT"; } # jellyfin
@ -271,4 +272,10 @@ with import <stockholm/lib>;
enable = true;
group = "download";
};
services.magnetico = {
enable = true;
web.address = "0.0.0.0";
web.port = 9092;
};
}