Configure config.yml
The config test application reads the file config.yml
to determine its configuration. This
is the complete sample config.yml
. Make changes for your environment as needed:
domino-iam:
server: https://auth.jumbocloudservices.com:7443
application-id: 91559e30-9227-48c1-a1d1-5e557b444b75
application-secret: aQ8iUW5mR+y47MWgzPDaOQtVVQ5/F0bcg3oBMfWTBA+S2RCwghEYa05DN9h8inpF
rootCertificateFile: c:\\letsencrypt-certs\\rootchain.crt
domino-das:
url: https://appsdb1.jumbocloudservices.com:443
rootCertificateFile: c:\\certs\\internalca.crt
domino-db:
hostName: appsdb1.jumbocloudservices.com
port: 3003
rootCertificateFile: c:\\certs\\internalca.crt
clientCertificateFile: c:\\certs\\sampleapp.crt
clientKeyFile: c:\\certs\\sampleapp-open.key
database: sample.nsf
web:
fqdn: config-test.jumbocloudservices.com
listenAddress: 0.0.0.0
listenPort: 443
rootCertificateFile: c:\\letsencrypt-certs\\config-test.jumbocloudservices.com\\chain.crt
certificateFile: c:\\letsencrypt-certs\\config-test.jumbocloudservices.com\\config-test.jumbocloudservices.com.crt
keyFile: c:\\letsencrypt-certs\\config-test.jumbocloudservices.com\\config-test.jumbocloudservices.com.key
This is a description of each entry:
domino-iam
This section provides details to access the IAM service:
server
- the URL to the IAM service endpoint [ref]application-id
andapplication-secret
- the application specific values generated by IAM Admin [ref]rootCertificateFile
- the file which contains the certificate chain which verifies the identity of theserver
URL. [ref]
domino-das
This section provides details to access the Domino web server, and specifically, the Domino Access Services:
url
- the Domino web server url.rootCertificateFile
- the file which contains the certificate chain which verifies the identity of the server inurl
. [ref]
domino-db
This section provides details to access domino-db
and Proton
:
hostName
andport
- the connection details to Proton. [ref]rootCertificateFile
- the certificate chain which verifies the identity of the server athostName
andport
.clientCertificateFile
andclientKeyFile
- the client credentials for the Node.js application [ref]database
- the Domino database file name that the config test application uses [ref]
web
This section provides details for the web front end to the config test application:
fqdn
- the hostname where users access the config test application with a web browserlistenAddress
- 0.0.0.0 binds the application to all addresses on the serverlistenPort
- the port the application listens for connections.rootCertificateFile
- the signer certificate chain of the authority that signed the server certificatecertificateFile
andkeyFile
- the server certificate and key file