Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2020 The Magma Authors. |
| 2 | # SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org> |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 3 | # |
Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 5 | |
| 6 | # nghttpx config will be generated here and used |
| 7 | nghttpx_config_location: /var/tmp/nghttpx.conf |
| 8 | |
| 9 | # Location for certs |
| 10 | rootca_cert: /var/opt/magma/certs/rootCA.pem |
| 11 | gateway_cert: /var/opt/magma/certs/gateway.crt |
| 12 | gateway_key: /var/opt/magma/certs/gateway.key |
| 13 | |
| 14 | # Listening port of the proxy for local services. The port would be closed |
| 15 | # for the rest of the world. |
| 16 | local_port: 8443 |
| 17 | |
| 18 | # Cloud address for reaching out to the cloud. |
| 19 | cloud_address: controller.magma.test |
| 20 | cloud_port: 7443 |
| 21 | |
| 22 | bootstrap_address: bootstrapper-controller.magma.test |
| 23 | bootstrap_port: 7444 |
| 24 | |
| 25 | fluentd_address: fluentd.magma.test |
| 26 | fluentd_port: 24224 |
| 27 | |
| 28 | # Option to use nghttpx for proxying. If disabled, the individual |
| 29 | # services would establish the TLS connections themselves. |
| 30 | proxy_cloud_connections: True |
| 31 | |
| 32 | # Allows http_proxy usage if the environment variable is present |
| 33 | allow_http_proxy: False |
| 34 | |
| 35 | # [Experimental] Sentry related configs |
| 36 | # If set, the Sentry Python SDK will be initialized for all python services |
| 37 | sentry_url_python: "" |
| 38 | # If set, the Sentry Native SDK will be initialized for MME and SessionD |
| 39 | sentry_url_native: "" |
| 40 | # If set, /var/log/mme.log will be uploaded along MME crashreports |
| 41 | sentry_upload_mme_log: false |
| 42 | # Rate at which we want to sample Python error events |
| 43 | # Should be a number between 0 (0% of errors sent) and 1 (100% of errors sent) |
| 44 | sentry_sample_rate: 1.0 |