By 4lvin
On one of my Droplets, I have a Java Socket Listener at Port :5000. Something like:
ServerSocket serverSocket = new ServerSocket(5000);
Socket socket = serverSocket.accept();
And since there is an Public IP Address on my Droplet, i am able to listen at (example):
123.123.123.123:5000
It is fine. But now, how do i make my Domain Name to be applied on top of IP Address please. I mean, to be like:
www.example.com:5000
I have my DNS already pointing to Server. But I don’t know how to apply (or) bind it to a Port like that. Is it about NGINX? Or can it be done with Apache too? (Because i have Apache also running inside for Web Server) But how do i achieve that please?
Please kindly help.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This is something Apache can do. You are looking for proxypass settings.
Example
<VirtualHost *:*>
ProxyPreserveHost On
ProxyPass / http://0.0.0.0: 5000/
ProxyPassReverse / http://0.0.0.0: 5000/
ServerName localhost
</VirtualHost>
You may need to install the apache mods to make this work.
This guide should help you https://www.digitalocean.com/community/tutorials/how-to-use-apache-http-server-as-reverse-proxy-using-mod_proxy-extension
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.