blob: 009c3b93750bd0140014cb66ff18a50d89b27494 [file] [log] [blame]
Wei-Yu Chenad55cb82022-02-15 20:07:01 +08001# SPDX-FileCopyrightText: 2020 The Magma Authors.
2# SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org>
Wei-Yu Chen49950b92021-11-08 19:19:18 +08003#
Wei-Yu Chenad55cb82022-02-15 20:07:01 +08004# SPDX-License-Identifier: BSD-3-Clause
Wei-Yu Chen49950b92021-11-08 19:19:18 +08005
6# nghttpx config will be generated here and used
7nghttpx_config_location: /var/tmp/nghttpx.conf
8
9# Location for certs
10rootca_cert: /var/opt/magma/certs/rootCA.pem
11gateway_cert: /var/opt/magma/certs/gateway.crt
12gateway_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.
16local_port: 8443
17
18# Cloud address for reaching out to the cloud.
19cloud_address: controller.magma.test
20cloud_port: 7443
21
22bootstrap_address: bootstrapper-controller.magma.test
23bootstrap_port: 7444
24
25fluentd_address: fluentd.magma.test
26fluentd_port: 24224
27
28# Option to use nghttpx for proxying. If disabled, the individual
29# services would establish the TLS connections themselves.
30proxy_cloud_connections: True
31
32# Allows http_proxy usage if the environment variable is present
33allow_http_proxy: False
34
35# [Experimental] Sentry related configs
36# If set, the Sentry Python SDK will be initialized for all python services
37sentry_url_python: ""
38# If set, the Sentry Native SDK will be initialized for MME and SessionD
39sentry_url_native: ""
40# If set, /var/log/mme.log will be uploaded along MME crashreports
41sentry_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)
44sentry_sample_rate: 1.0