-
Notifications
You must be signed in to change notification settings - Fork 25
/
.mpsrc
63 lines (63 loc) · 1.69 KB
/
.mpsrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"common_name": "localhost",
"port": 4433,
"country": "US",
"company": "NoCorp",
"listen_any": true,
"tls_offload": false,
"web_port": 3000,
"generate_certificates": true,
"web_admin_user": "",
"web_admin_password": "",
"web_auth_enabled": true,
"vault_address": "http://localhost:8200",
"vault_token": "myroot",
"mqtt_address": "",
"secrets_path": "secret/data/",
"secrets_provider": "vault",
"cert_format": "file",
"data_path": "../private/data.json",
"cert_path": "../private",
"jwt_secret": "",
"jwt_issuer": "9EmRJTbIiIb4bIeSsmgcWIjrR6HyETqc",
"jwt_expiration": "1440",
"cors_origin": "*",
"cors_headers": "*",
"cors_methods": "*",
"db_provider": "postgres",
"connection_string": "postgresql://<USERNAME>:<PASSWORD>@localhost:5432/mpsdb?sslmode=no-verify",
"instance_name": "localhost",
"mps_tls_config": {
"key": "../private/mpsserver-cert-private.key",
"cert": "../private/mpsserver-cert-public.crt",
"requestCert": true,
"rejectUnauthorized": false,
"minVersion": "TLSv1",
"ciphers": null,
"secureOptions": [
"SSL_OP_NO_SSLv2",
"SSL_OP_NO_SSLv3"
]
},
"web_tls_config": {
"key": "../private/mpsserver-cert-private.key",
"cert": "../private/mpsserver-cert-public.crt",
"ca": [
"../private/root-cert-public.crt"
],
"secureOptions": [
"SSL_OP_NO_SSLv2",
"SSL_OP_NO_SSLv3",
"SSL_OP_NO_COMPRESSION",
"SSL_OP_CIPHER_SERVER_PREFERENCE",
"SSL_OP_NO_TLSv1",
"SSL_OP_NO_TLSv11"
]
},
"redirection_expiration_time": "5",
"consul_enabled": false,
"consul_host": "localhost",
"consul_port": "8500",
"consul_key_prefix": "MPS",
"cira_last_seen": true
}