.docker.env 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. # Invisible reCaptcha secret key
  40. # Create one in https://www.google.com/recaptcha/intro/
  41. RECAPTCHA_SITE_KEY=
  42. RECAPTCHA_SECRET_KEY=
  43. # Google Cloud API to prevent from users from submitting malware URLs.
  44. # Get it from https://developers.google.com/safe-browsing/v4/get-started
  45. GOOGLE_SAFE_BROWSING_KEY=
  46. # Your email host details to use to send verification emails.
  47. # More info on http://nodemailer.com/
  48. # Mail from example "Kutt <support@kutt.it>". Leave empty to use MAIL_USER
  49. MAIL_HOST=
  50. MAIL_PORT=
  51. MAIL_SECURE=true
  52. MAIL_USER=
  53. MAIL_FROM=
  54. MAIL_PASSWORD=
  55. # The email address that will receive submitted reports.
  56. REPORT_EMAIL=
  57. # Support email to show on the app
  58. CONTACT_EMAIL=