<!-- SSL port [0 = disable HTTPS] -->
<key>SSLPort</key>
<integer>9443</integer>
<!--
Network address configuration information
This configures the actual network address that the server binds to.
-->
<!-- List of IP addresses to bind to [empty = all] -->
<key>BindAddresses</key>
<array>
<string>65.12.223.234</string>
<string>75.145.224.197</string>
</array>
This only binds to the last entry:
# netstat -an | grep 9443
tcp 0 0 75.145.224.197:9443 0.0.0.0:* LISTEN
#
If I rearrange the BindAddresses array, it will always bind to only the last entry...
This is on Linux FC7...
-Stephen