forked from atmos/camo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (41 loc) · 1.35 KB
/
app.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
{
"name": "camo",
"logo": "https://camo.githubusercontent.com/4d04abe0044d94fefcf9af21332239dbebf01ded/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f33382f323439363137322f66353538626262342d623331322d313165332d383865392d3634366237376534376536652e676966",
"description": "Camo is all about making insecure image assets look secure.",
"keywords": [
"ssl",
"image",
"proxy",
"github",
"anonymous"
],
"website": "http://github.com/atmos/camo",
"repository": "https://github.com/atmos/camo",
"success_url": "/status",
"env": {
"CAMO_HOSTNAME": {
"description": "The hostname for the camo server.",
"required": false
},
"CAMO_KEY": {
"description": "The fully qualified domain name for camo to run on.",
"generator": "secret"
},
"CAMO_LENGTH_LIMIT": {
"description": "The maximum Content-Length that camo will proxy in bytes",
"value": "5242880"
},
"CAMO_LOGGING_ENABLED": {
"description": "Toggle whether or not to log verbosely('debug' or disabled').",
"required": false
},
"CAMO_MAX_REDIRECTS": {
"description": "The number of redirects that camo should follow",
"value": "4"
},
"CAMO_SOCKET_TIMEOUT": {
"description": "The number of seconds to wait for socket connection errors",
"value": "10"
}
}
}