-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmnm.conf
31 lines (31 loc) · 832 Bytes
/
mnm.conf
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
{
"#":" comment",
"ntp":{
"hosts": ["your-ntp-service", "0.pool.ntp.org", "1.pool.ntp.org"],
"retries": 4
},
"listen":{
"net": "tcp",
"laddr": ":443",
"certPath": "./server.crt",
"keyPath": "./server.key"
},
"name": "your-site-name",
"auth": 0,
"authby": null,
"#authby": [{
"#": "authentication optional (for testing)"
},{
"label": "Example OpenID Connect provider",
"login": ["https://example.com/authorize",
"response_type=code",
"scope=openid"],
"token": ["https://example.com/token",
"grant_type=authorization_code"],
"std": ["client_id=your-id",
"redirect_uri=http://localhost:8123/u"],
"keys": "https://example.com/keys",
"iss": "https://example.com/",
"aud": "your-id"
}]
}