efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 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 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 9 | Most configuration properties for both Data Router Provisioning server and Data Router Node server |
| 10 | should remain as default values. |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 11 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 12 | An exception to this is when a user wants to run over HTTP (non TLS). |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 13 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 14 | For DR Provisioning server config, edit the following props in the provserver.properties file. |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 15 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 16 | .. code-block:: bash |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 17 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 18 | org.onap.dmaap.datarouter.provserver.tlsenabled = false |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 19 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 20 | and ensure aaf cadi is disabled also |
| 21 | |
| 22 | .. code-block:: bash |
| 23 | |
| 24 | org.onap.dmaap.datarouter.provserver.cadi.enabled = false |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 25 | |
| 26 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 27 | For DR Node server config, edit the following props in the node.properties file to target http. |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 28 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 29 | .. code-block:: bash |
efiacor | 0fa0198 | 2019-04-08 14:52:08 +0000 | [diff] [blame] | 30 | |
efiacor | e49f6d6 | 2022-03-31 17:20:13 +0100 | [diff] [blame] | 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 |