1) what's the equivalent configuration in Jetty to listen on multiple IPs, as the Listen directive in Apache?
2) How can a sub-domain be configured with different context path?
|
|
|
Question 1. Assuming you're configuring using a
You'll need one connector for each IP you want to listen on. So, just duplicate that section as many times as you need. Then for each of them replace the line
with
where www.xxx.yyy.zzz is the IP you want to listen on. Question 2. See |
|||
|
|