blob: f24536290f1d1d6226a389ace0c818865f85a539 [file] [log] [blame]
Wei-Yu Chen49950b92021-11-08 19:19:18 +08001---
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
15nghttpx_config_location: /var/tmp/nghttpx.conf
16
17# Location for certs
18rootca_cert: /var/opt/magma/certs/rootCA.pem
19gateway_cert: /var/opt/magma/certs/gateway.crt
20gateway_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.
24local_port: 8443
25
26# Cloud address for reaching out to the cloud.
27cloud_address: controller.magma.test
28cloud_port: 7443
29
30bootstrap_address: bootstrapper-controller.magma.test
31bootstrap_port: 7444
32
33fluentd_address: fluentd.magma.test
34fluentd_port: 24224
35
36# Option to use nghttpx for proxying. If disabled, the individual
37# services would establish the TLS connections themselves.
38proxy_cloud_connections: True
39
40# Allows http_proxy usage if the environment variable is present
41allow_http_proxy: False
42
43# [Experimental] Sentry related configs
44# If set, the Sentry Python SDK will be initialized for all python services
45sentry_url_python: ""
46# If set, the Sentry Native SDK will be initialized for MME and SessionD
47sentry_url_native: ""
48# If set, /var/log/mme.log will be uploaded along MME crashreports
49sentry_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)
52sentry_sample_rate: 1.0