Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 1 | --- |
| 2 | # |
| 3 | # Copyright 2020 The Magma Authors. |
| 4 | |
| 5 | # This source code is licensed under the BSD-style license found in the |
| 6 | # LICENSE file in the root directory of this source tree. |
| 7 | |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | # nghttpx config will be generated here and used |
| 15 | nghttpx_config_location: /var/tmp/nghttpx.conf |
| 16 | |
| 17 | # Location for certs |
| 18 | rootca_cert: /var/opt/magma/certs/rootCA.pem |
| 19 | gateway_cert: /var/opt/magma/certs/gateway.crt |
| 20 | gateway_key: /var/opt/magma/certs/gateway.key |
| 21 | |
| 22 | # Listening port of the proxy for local services. The port would be closed |
| 23 | # for the rest of the world. |
| 24 | local_port: 8443 |
| 25 | |
| 26 | # Cloud address for reaching out to the cloud. |
| 27 | cloud_address: controller.magma.test |
| 28 | cloud_port: 7443 |
| 29 | |
| 30 | bootstrap_address: bootstrapper-controller.magma.test |
| 31 | bootstrap_port: 7444 |
| 32 | |
| 33 | fluentd_address: fluentd.magma.test |
| 34 | fluentd_port: 24224 |
| 35 | |
| 36 | # Option to use nghttpx for proxying. If disabled, the individual |
| 37 | # services would establish the TLS connections themselves. |
| 38 | proxy_cloud_connections: True |
| 39 | |
| 40 | # Allows http_proxy usage if the environment variable is present |
| 41 | allow_http_proxy: False |
| 42 | |
| 43 | # [Experimental] Sentry related configs |
| 44 | # If set, the Sentry Python SDK will be initialized for all python services |
| 45 | sentry_url_python: "" |
| 46 | # If set, the Sentry Native SDK will be initialized for MME and SessionD |
| 47 | sentry_url_native: "" |
| 48 | # If set, /var/log/mme.log will be uploaded along MME crashreports |
| 49 | sentry_upload_mme_log: false |
| 50 | # Rate at which we want to sample Python error events |
| 51 | # Should be a number between 0 (0% of errors sent) and 1 (100% of errors sent) |
| 52 | sentry_sample_rate: 1.0 |