I'm trying to access applications with internal IPs via subdomains from outside.
From my research, when it comes to http running apache, it seems feasible with a DNS server inside.
How to point sub-domains to different local IP
However, what if the application is other than the website without using apache?
what I'm trying to do is
if port 8000 requested on abc.mydomain.com, it points to 192.168.0.1:8000
if port 8000 requested on def.mydomain.com, it points to 192.168.0.2:8000
I have been using public IP addresses instead of the internal address and it has been working fine however now I can't afford the public IP addresses and looking for a solution. Thanks!