containers/syncthing: expose GUI port

This commit is contained in:
steveej 2019-03-06 13:53:37 +01:00
parent 2c9da1f12e
commit f7338eb289

View file

@ -9,10 +9,15 @@ in args // {
]; ];
networking.firewall.enable = true; networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [
# syncthing gui
8384
];
services.syncthing = { services.syncthing = {
enable = true; enable = true;
openDefaultPorts = true; openDefaultPorts = true;
guiAddress = "0.0.0.0:8384";
}; };
}; };