diff options
author | lassulus <lass@aidsballs.de> | 2016-04-09 00:36:38 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-04-09 00:36:38 +0200 |
commit | 38e5cc513cabd4a145bb78db71aa7387bb4278fa (patch) | |
tree | 479c64f67f2b947c16591960879b11eae0a87adf | |
parent | fae50b203d7d3211eec1221fb07f97416edc729c (diff) |
l 1 prism: allow https in iptables
-rw-r--r-- | lass/1systems/prism.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lass/1systems/prism.nix b/lass/1systems/prism.nix index db4f1f606..4f6770c38 100644 --- a/lass/1systems/prism.nix +++ b/lass/1systems/prism.nix @@ -136,7 +136,8 @@ in { ../2configs/websites/domsen.nix ]; krebs.iptables.tables.filter.INPUT.rules = [ - { predicate = "-p tcp --dport 80"; target = "ACCEPT"; } + { predicate = "-p tcp --dport http"; target = "ACCEPT"; } + { predicate = "-p tcp --dport https"; target = "ACCEPT"; } ]; } { |