forked from cshum/imagor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
27 lines (27 loc) · 871 Bytes
/
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
{
"name": "imagor",
"description": "Fast, Docker-ready image processing server in Go with libvips",
"keywords": [
"image",
"resize-images",
"crop-image",
"microservice",
"docker",
"jpeg",
"png",
"libvips"
],
"repository": "https://github.com/cshum/imagor",
"stack": "container",
"env": {
"IMAGOR_UNSAFE": {
"description": "Use Unsafe mode, default 1 for testing. In production environment, it is highly recommended turning off `IMAGOR_UNSAFE` and setting up URL signature using `IMAGOR_SECRET`, to prevent DDoS attacks that abuse multiple image operations.",
"required": true,
"value": "1"
},
"IMAGOR_SECRET": {
"description": "Secret key for URL signature.",
"required": false
}
}
}