Closed port 80 from firewall
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user