diff --git a/templates/ingress/nginx-controller.template b/templates/ingress/nginx-controller.template index 00016f2..4ddcf7d 100644 --- a/templates/ingress/nginx-controller.template +++ b/templates/ingress/nginx-controller.template @@ -3,7 +3,6 @@ controller: enabled: true ports: http: 80 - https: 443 kind: DaemonSet service: diff --git a/templates/iptables/add-nat-routing.sh b/templates/iptables/add-nat-routing.sh index cc59aa8..9ac528b 100644 --- a/templates/iptables/add-nat-routing.sh +++ b/templates/iptables/add-nat-routing.sh @@ -9,6 +9,5 @@ iptables -A FORWARD -i $WG_FACE -j ACCEPT iptables -t nat -A POSTROUTING -o $IN_FACE -j MASQUERADE iptables -I INPUT 1 -i $IN_FACE -p udp --dport $WG_PORT -j ACCEPT -# HTTP(S) -iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT -iptables -I INPUT 6 -m state --state NEW -p tcp --dport 443 -j ACCEPT \ No newline at end of file +# HTTP +iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT \ No newline at end of file diff --git a/templates/iptables/remove-nat-routing.sh b/templates/iptables/remove-nat-routing.sh index 5d1baa0..032f60e 100644 --- a/templates/iptables/remove-nat-routing.sh +++ b/templates/iptables/remove-nat-routing.sh @@ -9,6 +9,5 @@ iptables -D FORWARD -i $WG_FACE -j ACCEPT iptables -t nat -D POSTROUTING -o $IN_FACE -j MASQUERADE iptables -D INPUT -i $IN_FACE -p udp --dport $WG_PORT -j ACCEPT -# HTTP(S) -iptables -D INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT -iptables -D INPUT -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT \ No newline at end of file +# HTTP +iptables -D INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT \ No newline at end of file