-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 996 Bytes
/
config.example.json
File metadata and controls
44 lines (44 loc) · 996 Bytes
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
{
"port": 3000,
"host": "0.0.0.0",
"github": {
"token": "ghp_your_fine_grained_pat_here",
"cache_dir": "./cache",
"cache_ttl_seconds": 3600,
"cache": {
"metadata_ttl_seconds": 300,
"asset_ttl_seconds": 86400,
"max_items": 500,
"max_mb": 256,
"stale_while_revalidate_seconds": 60,
"stale_if_error_seconds": 3600,
"enable_etags": true
}
},
"rate_limit": {
"requests_per_minute": 60
},
"auth": {
"method": "jamf",
"jamf": {
"api_url": "https://your-jamf-instance.jamfcloud.com",
"api_key": "your_jamf_api_key",
"api_secret": "your_jamf_api_secret"
},
"tailscale": {
"api_key": "tskey_your_tailscale_api_key"
},
"mtls": {
"ca_cert_path": "/path/to/ca.crt",
"require_client_cert": true
}
},
"signing": {
"enabled": false,
"private_key_path": "/path/to/private.key"
},
"audit": {
"enabled": true,
"log_file": "./logs/audit.log"
}
}