Connector httpConnector = createConnector(params.useNIO, params.port);\r
String bindInterface = settings.getString(Keys.server.httpBindInterface, null);\r
if (!StringUtils.isEmpty(bindInterface)) {\r
- logger.warn(MessageFormat.format("Binding connector on port {0} to {1}",\r
+ logger.warn(MessageFormat.format("Binding connector on port {0,number,0} to {1}",\r
params.port, bindInterface));\r
httpConnector.setHost(bindInterface);\r
}\r
params.useNIO, params.securePort);\r
String bindInterface = settings.getString(Keys.server.httpsBindInterface, null);\r
if (!StringUtils.isEmpty(bindInterface)) {\r
- logger.warn(MessageFormat.format("Binding ssl connector on port {0} to {1}",\r
+ logger.warn(MessageFormat.format("Binding ssl connector on port {0,number,0} to {1}",\r
params.securePort, bindInterface));\r
secureConnector.setHost(bindInterface);\r
}\r
}\r
if (allowRenegotiation) {\r
logger.info(" allowing SSL renegotiation on Java " + v);\r
- }\r
- connector.setAllowRenegotiate(true);\r
+ connector.setAllowRenegotiate(allowRenegotiation);\r
+ } \r
connector.setKeystore(keystore.getAbsolutePath());\r
connector.setPassword(password);\r
connector.setPort(port);\r