Refactor firewall configuration with comments

This commit is contained in:
coolneng 2019-11-11 03:29:00 +01:00
parent c154af8f83
commit fecb1956f2
1 changed files with 8 additions and 1 deletions

View File

@ -16,7 +16,14 @@
# Firewall configuration # Firewall configuration
networking.firewall = { networking.firewall = {
allowedTCPPorts = [ 631 6566 22067 8384 80 443 ]; allowedTCPPorts = [
631 # Cups
6566 # SANE
22067 # Syncthing relay
8384 # Syncthing GUI
80
443
];
autoLoadConntrackHelpers = true; autoLoadConntrackHelpers = true;
connectionTrackingModules = [ "sane" ]; connectionTrackingModules = [ "sane" ];
}; };