app.json 699 B

123456789101112131415161718192021
  1. {
  2. "name": "imgproxy",
  3. "description": "Fast and secure standalone server for resizing and converting remote images.",
  4. "keywords": ["image", "resize-images", "crop-image", "microservice", "docker", "jpeg", "png", "libvips"],
  5. "repository": "https://github.com/imgproxy/imgproxy",
  6. "logo": "https://cdn.rawgit.com/imgproxy/imgproxy/master/logo.svg",
  7. "success_url": "/health",
  8. "stack": "container",
  9. "env": {
  10. "IMGPROXY_KEY": {
  11. "description": "Hex-encoded secret key for signing URLs.",
  12. "value": "",
  13. "required": false
  14. },
  15. "IMGPROXY_SALT": {
  16. "description": "Hex-encoded secret salt for signing URLs.",
  17. "value": "",
  18. "required": false
  19. }
  20. }
  21. }