0

How to bind a jetty server to multiple IPs. In my case I want request coming on 172.18.1.1 to 172.18.1.5 ips binded on same port will get handle by a single instance of server.

Rajan Garg
  • 317
  • 1
  • 3
  • 7

1 Answers1

0

You can try setting up a proxy server on all the IPs which just forwards the requests to your instance.

Bourne
  • 1,905
  • 13
  • 35
  • 53
  • No,this is not a option for me.I cannot play with the machine settings.Only option I have is to do somehow by coding.I am wondering is there something like virtualhost. – Rajan Garg Jun 18 '13 at 11:11