Add in linux input tcp state new tcp 443 accept

Here is the updated Linux iptables rule:

iptables -A INPUT -p tcp --dport 443 -m state --state NEW -j ACCEPT

Let me break it down:

This rule allows new incoming TCP connections on port 443 (HTTPS) to be accepted.