From 5d3f659c68296af84c17f06d236e420e51720096 Mon Sep 17 00:00:00 2001 From: dec0dOS Date: Wed, 24 Mar 2021 13:48:07 +0300 Subject: [PATCH] docs: fix iptables snippet in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 51860de..a89a5df 100755 --- a/README.md +++ b/README.md @@ -123,9 +123,9 @@ The most simple one-minute installation. Great for the fresh VPS setup. ``` * or you may use the old good iptables: ```sh - 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 - iptables -I INPUT 6 -m state --state NEW -p udp --dport 9993 -j ACCEPT + iptables -A INPUT -p tcp --dport 80 -j ACCEPT + iptables -A INPUT -p tcp --dport 443 -j ACCEPT + iptables -A INPUT -p udp --dport 9993 -j ACCEPT ``` 7. Navigate to `https://YOURDOMAIN.com/app/`. Now you could use your ZeroUI instance with HTTPS support and automated certificate renewal.