Contains the CyberTrace HTTP service parameters.
Path
GUISettings > HTTPServer
Attributes
This element has no attributes.
Optional
The HTTPServer element is optional. If it is omitted, the default values are used.
Nested elements
This element is a container for the following nested elements:
Specifies the IP address and port where the CyberTrace HTTP service is available.
The ConnectionString
element is optional. If it is omitted, the 127.0.0.1:443
IP address and port are used. After the installation process is complete, the default value of the HTTPServer > ConnectionString element is 0.0.0.0:443
.
Path to the PEM-formatted certificate on a local computer for HTTPS connections. If a relative path is specified, it is calculated relative to the executable file.
For security reasons, do not store your certificate in a shared folder accessible over a network and do not specify the path to a network shared folder containing your certificate.
The SSLCertificatePath element is optional. If it is omitted, the ../httpsrv/kl_feed_service_cert.pem
file is used.
Path to the PEM-formatted private key on a local computer for HTTPS connections. If a relative path is specified, it is calculated relative to the executable file.
For security reasons, do not store your private key in a shared folder accessible over a network and do not specify the path to a network shared folder containing your private key.
The SSLPrivateKeyPath element is optional. If it is omitted, the ../httpsrv/kl_feed_service_private.pem
file is used.
Path to the directory that contains layout pages for CyberTrace HTTP Service. If a relative path is specified, it is calculated relative to the executable file.
The TemplatesPath element is optional. If it is omitted, the ../httpsrv/templates/
directory is used.
Contains the IP address or hostname that is used in the %IndicatorInfo%
field of detection events, in the service events to notify that a retrospective scan completes, and in the result of exporting an indicator.
The ResourcesIP element is mandatory. The default value is 127.0.0.1
.
Example
The following is an example of this element.
<HTTPServer> <ResourcesIP>127.0.0.1</ResourcesIP> <ConnectionString>0.0.0.0:443</ConnectionString> <TemplatesPath>../httpsrv/templates</TemplatesPath> <SSLCertificatePath>../httpsrv/kl_feed_service_cert.pem</SSLCertificatePath> <SSLPrivateKeyPath>../httpsrv/kl_feed_service_private.pem</SSLPrivateKeyPath> </HTTPServer> |