Report this

What is the reason for this report?

Assign Domain Name on a IP:PORT Listener

Posted on November 9, 2017

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.