forked from Lothiraldan/saltpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json.sample
More file actions
26 lines (25 loc) · 846 Bytes
/
settings.json.sample
File metadata and controls
26 lines (25 loc) · 846 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
{
"API_URL": "localhost:5417", # The API URL
"SECURE_HTTP": false, # Is the API protected by HTTPS?
"templates": { # Templates sample
"basic": { # Template name
"description": "Basic template", # Template description
"matcher": "glob",
"target": "*",
"moduleFunction": "test.fib",
"arguments": {
"num": 10
}
},
"version": {
"description": "Basic version",
"matcher": "glob",
"target": "Celeste",
"moduleFunction": "test.version",
"arguments": {}
}
},
"EAUTH": "pam", # The configured external_auth system
"FLAVOUR": "rest_cherrypy", # The netapi implementation configured on salt-master
"PATH_PREFIX": "/", # The prefix of saltpad url
}