// Resolve and configure proxies
if (outboundSocketBindings.size() > 0) {
List<ProxyConfiguration> proxies = new LinkedList<>();
for (final OutboundSocketBinding binding : outboundSocketBindings.values()) {
proxies.add(new ProxyConfiguration() {
@Override
public InetSocketAddress getRemoteAddress() {
// Both host and port may not be null in the model, no need to validate here
// Don't do resolving here, let mod_cluster deal with it