-
Notifications
You must be signed in to change notification settings - Fork 5
/
appsettings.json
55 lines (55 loc) · 1.03 KB
/
appsettings.json
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
{
"host_id": "d583b5d3-b1b5-48ea-815c-e068b9510ac2",
"host_name": "IIS Administration API",
"security": {
"require_windows_authentication": false,
"users": {
"administrators": [],
"owners": []
},
"access_policy": {
"api": {
"users": "Everyone",
"access_key": true
},
"api_keys": {
"users": "administrators",
"access_key": false
},
"system": {
"users": "owners",
"access_key": true
}
}
},
"logging": {
"enabled": true,
"min_level": "error",
"file_name": "log-{Date}.txt"
},
"auditing": {
"enabled": true,
"file_name": "audit-{Date}.txt"
},
"cors": {
"rules": [
{
"origin": "https://manage.iis.net",
"allow": true
}
]
},
"files": {
"skip_resolving_symbolic_links": "true",
"locations": [
{
"alias": "inetpub",
"path": "%systemdrive%\\inetpub",
"claims": [
"read",
"write"
]
}
]
}
}