I am able to SSH into my Azure VM. However, neither NGINX on port 80 nor dockerized ASP.NET Core on port 5000 are accessible. I've added security endpoint "allow" in the Azure portal config.
From within SSH session, using lynx to access localhost:80 and localhost:5000 works as expected
Docker container starting with:
docker run -t --rm -p 5000:5000 *imagename*
I attempted to modify IPTABLES with this recommendation apache not accepting incoming connections from outside of localhost but doing so still shows "0 pkts" when doing iptables -vL
Screenshot of the Azure rule configuration:
I've also added the port 80 outbound rule as Rem has suggested, but so far this has not helped.