blob: b55d07306a2cd03bd1eb4ea52c09039a374335dc [file] [log] [blame]
efiacor0fa01982019-04-08 14:52:08 +00001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
3
4.. _configuration:
5
6Configuration
7=============
8
efiacore49f6d62022-03-31 17:20:13 +01009Most configuration properties for both Data Router Provisioning server and Data Router Node server
10should remain as default values.
efiacor0fa01982019-04-08 14:52:08 +000011
efiacore49f6d62022-03-31 17:20:13 +010012An exception to this is when a user wants to run over HTTP (non TLS).
efiacor0fa01982019-04-08 14:52:08 +000013
efiacore49f6d62022-03-31 17:20:13 +010014For DR Provisioning server config, edit the following props in the provserver.properties file.
efiacor0fa01982019-04-08 14:52:08 +000015
efiacore49f6d62022-03-31 17:20:13 +010016.. code-block:: bash
efiacor0fa01982019-04-08 14:52:08 +000017
efiacore49f6d62022-03-31 17:20:13 +010018 org.onap.dmaap.datarouter.provserver.tlsenabled = false
efiacor0fa01982019-04-08 14:52:08 +000019
efiacore49f6d62022-03-31 17:20:13 +010020and ensure aaf cadi is disabled also
21
22.. code-block:: bash
23
24 org.onap.dmaap.datarouter.provserver.cadi.enabled = false
efiacor0fa01982019-04-08 14:52:08 +000025
26
efiacore49f6d62022-03-31 17:20:13 +010027For DR Node server config, edit the following props in the node.properties file to target http.
efiacor0fa01982019-04-08 14:52:08 +000028
efiacore49f6d62022-03-31 17:20:13 +010029.. code-block:: bash
efiacor0fa01982019-04-08 14:52:08 +000030
efiacore49f6d62022-03-31 17:20:13 +010031 # URL to retrieve dynamic configuration
32 ProvisioningURL = http://dmaap-dr-prov:8080/internal/prov
33 #
34 # URL to upload PUB/DEL/EXP logs
35 LogUploadURL = http://dmaap-dr-prov:8080/internal/logs
36 ...
37 #
38 # AAF CADI enabled flag
39 CadiEnabled = false
40 #
41 # Enable to run over http or https (default true|https)
42 TlsEnabled = false