.docker.env 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # App port to run on
  2. PORT=3000
  3. # The name of the site where Kutt is hosted
  4. SITE_NAME=Kutt
  5. # The domain that this website is on
  6. DEFAULT_DOMAIN=localhost:3000
  7. # Generated link length
  8. LINK_LENGTH=6
  9. # Postgres database credential details
  10. DB_HOST=postgres
  11. DB_PORT=5432
  12. DB_NAME=postgres
  13. DB_USER=
  14. DB_PASSWORD=
  15. DB_SSL=false
  16. # Redis host and port
  17. REDIS_HOST=redis
  18. REDIS_PORT=6379
  19. REDIS_PASSWORD=
  20. REDIS_DB=
  21. # Disable registration
  22. DISALLOW_REGISTRATION=false
  23. # Disable anonymous link creation
  24. DISALLOW_ANONYMOUS_LINKS=false
  25. # The daily limit for each user
  26. USER_LIMIT_PER_DAY=50
  27. # Create a cooldown for non-logged in users in minutes
  28. # Set 0 to disable
  29. NON_USER_COOLDOWN=0
  30. # Max number of visits for each link to have detailed stats
  31. DEFAULT_MAX_STATS_PER_LINK=5000
  32. # Use HTTPS for links with custom domain
  33. CUSTOM_DOMAIN_USE_HTTPS=false
  34. # A passphrase to encrypt JWT. Use a long and secure key.
  35. JWT_SECRET=securekey
  36. # Admin emails so they can access admin actions on settings page
  37. # Comma seperated
  38. ADMIN_EMAILS=
  39. # Google Cloud API to prevent from users from submitting malware URLs.
  40. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  41. GOOGLE_SAFE_BROWSING_KEY=
  42. # Your email host details to use to send verification emails.
  43. # More info on http://nodemailer.com/
  44. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  45. MAIL_HOST=
  46. MAIL_PORT=
  47. MAIL_SECURE=true
  48. MAIL_USER=
  49. MAIL_FROM=
  50. MAIL_PASSWORD=
  51. # The email address that will receive submitted reports.
  52. REPORT_EMAIL=
  53. # Support email to show on the app
  54. CONTACT_EMAIL=