[DMAAP-DR] Doc updates for AAF and tlsEnabled
[dmaap/datarouter.git] / docs / configuration.rst
1 .. 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
6 Configuration
7 =============
8
9 Most configuration properties for both Data Router Provisioning server and Data Router Node server
10 should remain as default values.
11
12 An exception to this is when a user wants to run over HTTP (non TLS).
13
14 For DR Provisioning server config, edit the following props in the provserver.properties file.
15
16 .. code-block:: bash
17
18     org.onap.dmaap.datarouter.provserver.tlsenabled  = false
19
20 and ensure aaf cadi is disabled also
21
22 .. code-block:: bash
23
24     org.onap.dmaap.datarouter.provserver.cadi.enabled = false
25
26
27 For DR Node server config, edit the following props in the node.properties file to target http.
28
29 .. code-block:: bash
30
31     #    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