Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. # this is the hostname of your app used by loomio
  2. CANONICAL_HOST=dsa-la-lsc.org
  3.  
  4. # this is to tell nginx that you want requests for this hostname to come to the app
  5. VIRTUAL_HOST=dsa-la-lsc.org
  6. SITE_NAME=dsa-la-lsc.org
  7.  
  8. # this is to configure letsencrypt to automatically issue and renew your hostname
  9. LETSENCRYPT_HOST=dsa-la-lsc.org
  10. LETSENCRYPT_EMAIL=dsa.la.lsc.org@gmail.com
  11.  
  12. # the number of dots in your hostname
  13. TLD_LENGTH=1
  14.  
  15. # uncomment this if you want a default subdomain of www (eg: www.loomio.org)
  16. # DEFAULT_SUBDOMAIN=www
  17.  
  18. # smtp settings
  19. SUPPORT_EMAIL=***@gmail.com
  20. SMTP_DOMAIN=dsa-la-lsc.org
  21.  
  22. SMTP_SERVER=in-v3.mailjet.com
  23. SMTP_PORT=587
  24. SMTP_USERNAME=e218723b3812408c1f41a3e245c35c83
  25. SMTP_PASSWORD=***
  26.  
  27. REPLY_HOSTNAME=dsa-la-lsc.org
  28.  
  29. # helper bot is the account which welcomes people to their groups.
  30. HELPER_BOT_EMAIL=no-reply@dsa-la-lsc.org
  31. RAILS_ENV=production
  32.  
  33. # Number of webserver processes and threads
  34. # threads are per worker. See https://github.com/puma/puma
  35. PUMA_WORKERS=4
  36. MIN_THREADS=2
  37. MAX_THREADS=8
  38.  
  39. # Force all connections to be https
  40. FORCE_SSL=1
  41.  
  42. # Enable rate limiting on group creation, other POST actions
  43. USE_RACK_ATTACK=1
  44.  
  45. # Send catch up email (missed yesterday) weekly
  46. # EMAIL_CATCH_UP_WEEKLY=1
  47.  
  48. # subscribe on participation default for new users
  49. # uncomment this to change "subscribe on participation" to be false for new users
  50. # EMAIL_ON_PARTICIPATION_DEFAULT_FALSE=1
  51. #
  52. #
  53. # Errbit
  54. # ERRBIT_HOST
  55. # ERRBIT_KEY
  56. # ERRBIT_PORT
  57.  
  58. # Uncomment these to disable features
  59. # FEATURES_DISABLE_CREATE_USER=1 # users must be invited
  60. # FEATURES_DISABLE_CREATE_GROUP=1 # users cannot create groups
  61. # FEATURES_DISABLE_PUBLIC_GROUPS=1 # disable /explore
  62. # FEATURES_DISABLE_HELP_LINK=1 # disable the help link
  63. # MAX_PENDING_INVITATIONS=100 # maximum unaccepted invitations a group have have
  64.  
  65. # Enable search engines to index public content
  66. # ALLOW_ROBOTS=1
  67.  
  68. # oauth providers, to let your users login using external accounts
  69. # FACEBOOK_APP_KEY=REPLACE
  70. # FACEBOOK_APP_SECRET=REPLACE
  71. # TWITTER_APP_KEY=REPLACE
  72. # TWITTER_APP_SECRET=REPLACE
  73. # GOOGLE_APP_KEY=REPLACE
  74. # GOOGLE_APP_SECRET=REPLACE
  75. SLACK_APP_KEY=***
  76. SLACK_APP_SECRET=***
  77. SLACK_VERIFICATION_TOKEN=***
  78.  
  79. # Theme images
  80. # images should be a multiple of 32px tall.
  81. # THEME_ICON_SRC=/files/icon.png
  82. # THEME_APP_LOGO_SRC=/files/logo.svg
  83. # THEME_EMAIL_HEADER_LOGO_SRC=/files/logo_128h.png
  84. # THEME_EMAIL_FOOTER_LOGO_SRC=/files/logo_64h.png
  85.  
  86. # used in emails. use rgb or hsl values, not hex
  87. # THEME_PRIMARY_COLOR=rgb(255,167,38)
  88. # THEME_ACCENT_COLOR=rgb(0,188,212)')
  89. # THEME_TEXT_ON_PRIMARY_COLOR=rgb(255,255,255)
  90. # THEME_TEXT_ON_ACCENT_COLOR=rgb(255,255,255)
  91.  
  92. # select a palette from material: https://material.io/guidelines/style/color.html#color-color-palette
  93. # or generate your own theme at http://mcg.mbitson.com/
  94. # THEME_PRIMARY_PALETTE=custom_primary
  95. # THEME_ACCENT_PALETTE=custom_accent
  96. # THEME_PRIMARY_PALETTE_CONFIG={"default": "500"}
  97. # THEME_ACCENT_PALETTE_CONFIG={"default": "500", "hue-1": "400", "hue-2": "300", "hue-3": "200"}
  98. # THEME_CUSTOM_PRIMARY_PALETTE={ "50": "f2e0e5", "100": "deb3bf", "200": "c98094", "300": "b34d69", "400": "a22648", "500": "920028", "600": "8a0024", "700": "7f001e", "800": "750018", "900": "63000f", "A100": "ff939b", "A200": "ff606c", "A400": "ff2d3c", "A700": "ff1425", "contrastDefaultColor": "light", "contrastDarkColors": [ "50", "100", "200", "A100", "A200" ], "contrastLightColors": [ "300", "400", "500", "600", "700", "800", "900", "A400", "A700" ] }
  99. # THEME_CUSTOM_ACCENT_PALETTE={ "50": "e9f4fb", "100": "c8e4f6", "200": "a3d3f0", "300": "7ec1ea", "400": "62b3e6", "500": "46a6e1", "600": "3f9edd", "700": "3795d9", "800": "2f8bd5", "900": "207bcd", "A100": "ffffff", "A200": "d2e8ff", "A400": "9fcfff", "A700": "85c2ff", "contrastDefaultColor": "light", "contrastDarkColors": [ "50", "100", "200", "300", "400", "500", "600", "700", "A100", "A200", "A400", "A700" ], "contrastLightColors": [ "800", "900" ] }
  100. DEVISE_SECRET=***
  101. SECRET_COOKIE_TOKEN=***
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement