Basic configuration
To enable HTTP and HTTPS in Talend Runtime, configure the properties of the org.ops4j.pax.web.cfg file as follows:
Property |
Default |
Description |
---|---|---|
org.osgi.service.http.port | 8040 |
This property specifies the port used for servlets and resources accessible via HTTP. The default value for this property is 8040. You can specify a value of 0 (zero), if you wish to allow Pax Web to automatically determine a free port to use for HTTP access. |
org.osgi.service.http.port.secure | 9001 |
This property specifies the port used for servlets and resources accessible via HTTPS. The default value for this property is 9001. You can specify a value of 0 (zero), if you wish to allow Pax Web to automatically determine a free port to use for HTTPS access. |
org.osgi.service.http.enabled | true |
This property specifies if the HTTP is enabled or disabled. If the value is set to "true", the support for HTTP access is enabled. If the value is set to "false", the support for HTTP access is disabled. The default value is "true". |
org.osgi.service.http.secure.enabled | false |
This property specifies if the HTTPS is enabled. If the value is set to "true", the support for HTTPS access is enabled. If the value is set to "false", the support for HTTPS access is disabled. The default value is "false". |