forked from askfalse/roproxy-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
27 lines (27 loc) · 872 Bytes
/
app.json
File metadata and controls
27 lines (27 loc) · 872 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
{
"name": "RoProxy Lite",
"description": "A modified version of RoProxy made for self-hosting.",
"repository": "https://github.com/halffalse/roproxy-lite",
"env": {
"KEY": {
"description": "The key used to access proxy.",
"generator": "secret"
},
"WEBSHARE_USER": {
"description": "The Webshare proxy username.",
"generator": "secret"
},
"WEBSHARE_PASS": {
"description": "The Webshare proxy password.",
"generator": "secret"
},
"TIMEOUT": {
"description": "The number of seconds before a request times out and is retried.",
"value": "5"
},
"RETRIES": {
"description": "The maximum number of times to attempt a request. Minimum: 1",
"value": "5"
}
}
}