app.json 831 B

123456789101112131415161718192021222324
  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/DarthSim/imgproxy",
  6. "stack": "heroku-16",
  7. "env": {
  8. "IMGPROXY_KEY": {
  9. "description": "Hex-encoded secret key for signing URLs.",
  10. "value": "c84285e0bec255fe163410fcedfe61e256f04a7f93ee25470c4ffd1fdc2aa964",
  11. "required": true
  12. },
  13. "IMGPROXY_SALT": {
  14. "description": "Hex-encoded secret salt for signing URLs.",
  15. "value": "83237eac0f5bb1cfa98d54b00c7057820843b8f0ca390edc7f6b99138cb14937",
  16. "required": true
  17. }
  18. },
  19. "buildpacks": [
  20. {
  21. "url": "https://github.com/DarthSim/heroku-buildpack-imgproxy"
  22. }
  23. ]
  24. }