Advertisement
Guest User

env

a guest
Nov 7th, 2017
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. # this is the hostname of your app used by loomio
  2. CANONICAL_HOST=server.website
  3.  
  4. # this is to tell nginx that you want requests for this hostname to come to the app
  5. VIRTUAL_HOST=server.website
  6.  
  7. # this is to configure letsencrypt to automatically issue and renew your hostname
  8. LETSENCRYPT_HOST=server.website
  9. LETSENCRYPT_EMAIL=myemail@gmail.com
  10.  
  11. # the number of dots in your hostname
  12. TLD_LENGTH=2
  13.  
  14. # uncomment this if you want a default subdomain of www (eg: www.loomio.org)
  15. # DEFAULT_SUBDOMAIN=www
  16.  
  17. # smtp settings
  18. SUPPORT_EMAIL=myemail@gmail.com
  19. SMTP_DOMAIN=server.website
  20.  
  21. SMTP_SERVER=smtp.example.com
  22. SMTP_PORT=465
  23. SMTP_USERNAME=smtpusername
  24. SMTP_PASSWORD=smtppassword
  25.  
  26. FAYE_URL=https://faye.server.website/faye
  27. REPLY_HOSTNAME=server.website
  28. WEBHOOK_URL=https://server.website/email_processor
  29.  
  30. # helper bot is the account which welcomes people to their groups.
  31. HELPER_BOT_EMAIL=no-reply@server.website
  32. RAILS_ENV=production
  33.  
  34. # Number of webserver processes and threads
  35. # threads are per worker. See https://github.com/puma/puma
  36. PUMA_WORKERS=2
  37. MIN_THREADS=2
  38. MAX_THREADS=8
  39.  
  40. # Force all connections to be https
  41. FORCE_SSL=0
  42.  
  43. # Errbit
  44. # ERRBIT_HOST
  45. # ERRBIT_KEY
  46. # ERRBIT_PORT
  47.  
  48. # Uncomment these to disable features
  49. # FEATURES_DISABLE_CREATE_USER=1 # users must be invited
  50. # FEATURES_DISABLE_CREATE_GROUP=1 # users cannot create groups
  51. # FEATURES_DISABLE_PUBLIC_GROUPS=1 # disable /explore
  52. # FEATURES_DISABLE_HELP_LINK=1 # disable the help link
  53.  
  54. # Enable search engines to index public content
  55. # ALLOW_ROBOTS=1
  56.  
  57. # oauth providers, to let your users login using external accounts
  58. # FACEBOOK_APP_KEY=REPLACE
  59. # FACEBOOK_APP_SECRET=REPLACE
  60. # TWITTER_APP_KEY=REPLACE
  61. # TWITTER_APP_SECRET=REPLACE
  62. # GOOGLE_APP_KEY=REPLACE
  63. # GOOGLE_APP_SECRET=REPLACE
  64. # SLACK_APP_KEY
  65. # SLACK_APP_SECRET
  66.  
  67. # Theme images
  68. # images should be a multiple of 32px tall.
  69. # THEME_ICON_SRC=/files/icon.png
  70. # THEME_APP_LOGO_SRC=/files/logo.svg
  71. # THEME_EMAIL_HEADER_LOGO_SRC=/files/logo_128h.png
  72. # THEME_EMAIL_FOOTER_LOGO_SRC=/files/logo_64h.png
  73.  
  74. # used in emails. use rgb or hsl values, not hex
  75. # THEME_PRIMARY_COLOR=rgb(255,167,38)
  76. # THEME_ACCENT_COLOR=rgb(0,188,212)')
  77. # THEME_TEXT_ON_PRIMARY_COLOR=rgb(255,255,255)
  78. # THEME_TEXT_ON_ACCENT_COLOR=rgb(255,255,255)
  79.  
  80. # select a palette from material: https://material.io/guidelines/style/color.html#color-color-palette
  81. # or generate your own theme at http://mcg.mbitson.com/
  82. # THEME_PRIMARY_PALETTE=custom_primary
  83. # THEME_ACCENT_PALETTE=custom_accent
  84. # THEME_PRIMARY_PALETTE_CONFIG={"default": "500"}
  85. # THEME_ACCENT_PALETTE_CONFIG={"default": "500", "hue-1": "400", "hue-2": "300","hue-3": "200"}
  86. # 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" ] }
  87. # 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" ] }
  88. DEVISE_SECRET={removed}
  89. SECRET_COOKIE_TOKEN={removed}
  90. PRIVATE_PUB_SECRET_TOKEN={removed}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement