Closed port 80 from firewall

This commit is contained in:
2025-07-01 20:16:27 +03:00
parent f79b8c780e
commit 3e0e3605af
6 changed files with 8 additions and 8 deletions

View File

@@ -13,8 +13,8 @@
services.actual.enable = true;
services.actual.settings.port = 5006;
# Open http and https ports to the public
networking.firewall.allowedTCPPorts = [ 443 80 ];
# Open https port to the public
networking.firewall.allowedTCPPorts = [ 443 ];
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;

View File

@@ -10,7 +10,7 @@
config = lib.mkIf config.gitea.enable {
# Open http and https ports to the public
networking.firewall.allowedTCPPorts = [ 443 80 ];
networking.firewall.allowedTCPPorts = [ 443 ];
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;

View File

@@ -14,7 +14,7 @@
config = lib.mkIf config.nextcloud.enable {
# Open http and https ports to the public
networking.firewall.allowedTCPPorts = [ 443 80 ];
networking.firewall.allowedTCPPorts = [ 443 ];
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;

View File

@@ -9,10 +9,10 @@
};
config = lib.mkIf config.syncthing.enable {
# 443 and 80 for for http and https
# 443 for https
# 22000 TCP and/or UDP for sync traffic
# 21027/UDP for discovery
networking.firewall.allowedTCPPorts = [ 22000 443 80 ];
networking.firewall.allowedTCPPorts = [ 22000 443 ];
networking.firewall.allowedUDPPorts = [ 22000 21027 ];
# Make sure acme module is active for the "kyren.codes" ssl cert

View File

@@ -11,7 +11,7 @@
config = lib.mkIf config.wakapi.enable {
# Open http and https ports to the public
networking.firewall.allowedTCPPorts = [ 443 80 ];
networking.firewall.allowedTCPPorts = [ 443 ];
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;

View File

@@ -26,7 +26,7 @@
];
# Open http and https ports to the public
networking.firewall.allowedTCPPorts = [ 443 80 ];
networking.firewall.allowedTCPPorts = [ 443 ];
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;