.env.nanobox 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. # Service dependencies
  2. # You may set REDIS_URL instead for more advanced options
  3. REDIS_HOST=$DATA_REDIS_HOST
  4. REDIS_PORT=6379
  5. # REDIS_DB=0
  6. # You may set DATABASE_URL instead for more advanced options
  7. DB_HOST=$DATA_DB_HOST
  8. DB_USER=$DATA_DB_USER
  9. DB_NAME=gonano
  10. DB_PASS=$DATA_DB_PASS
  11. DB_PORT=5432
  12. # DATABASE_URL=postgresql://$DATA_DB_USER:$DATA_DB_PASS@$DATA_DB_HOST/gonano
  13. # Optional ElasticSearch configuration
  14. ES_ENABLED=true
  15. ES_HOST=$DATA_ELASTIC_HOST
  16. ES_PORT=9200
  17. BIND=0.0.0.0
  18. # Federation
  19. # Note: Changing LOCAL_DOMAIN at a later time will cause unwanted side effects, including breaking all existing federation.
  20. # LOCAL_DOMAIN should *NOT* contain the protocol part of the domain e.g https://example.com.
  21. LOCAL_DOMAIN=${APP_NAME}.nanoapp.io
  22. # Changing LOCAL_HTTPS in production is no longer supported. (Mastodon will always serve https:// links)
  23. # Use this only if you need to run mastodon on a different domain than the one used for federation.
  24. # You can read more about this option on https://github.com/tootsuite/documentation/blob/master/Running-Mastodon/Serving_a_different_domain.md
  25. # DO *NOT* USE THIS UNLESS YOU KNOW *EXACTLY* WHAT YOU ARE DOING.
  26. # WEB_DOMAIN=mastodon.example.com
  27. # Use this if you want to have several aliases handler@example1.com
  28. # handler@example2.com etc. for the same user. LOCAL_DOMAIN should not
  29. # be added. Comma separated values
  30. # ALTERNATE_DOMAINS=example1.com,example2.com
  31. # Application secrets
  32. # Generate each with the `rake secret` task (`nanobox run bundle exec rake secret`)
  33. SECRET_KEY_BASE=$SECRET_KEY_BASE
  34. OTP_SECRET=$OTP_SECRET
  35. # VAPID keys (used for push notifications)
  36. # You can generate the keys using the following command (first is the private key, second is the public one)
  37. # You should only generate this once per instance. If you later decide to change it, all push subscription will
  38. # be invalidated, requiring the users to access the website again to resubscribe.
  39. #
  40. # Generate with `rake mastodon:webpush:generate_vapid_key` task (`nanobox run bundle exec rake mastodon:webpush:generate_vapid_key`)
  41. #
  42. # For more information visit https://rossta.net/blog/using-the-web-push-api-with-vapid.html
  43. VAPID_PRIVATE_KEY=$VAPID_PRIVATE_KEY
  44. VAPID_PUBLIC_KEY=$VAPID_PUBLIC_KEY
  45. # Registrations
  46. # Single user mode will disable registrations and redirect frontpage to the first profile
  47. # SINGLE_USER_MODE=true
  48. # Prevent registrations with following e-mail domains
  49. # EMAIL_DOMAIN_BLACKLIST=example1.com|example2.de|etc
  50. # Only allow registrations with the following e-mail domains
  51. # EMAIL_DOMAIN_WHITELIST=example1.com|example2.de|etc
  52. # Optionally change default language
  53. # DEFAULT_LOCALE=de
  54. # E-mail configuration
  55. # Note: Mailgun and SparkPost (https://sparkpo.st/smtp) each have good free tiers
  56. # If you want to use an SMTP server without authentication (e.g local Postfix relay)
  57. # then set SMTP_AUTH_METHOD and SMTP_OPENSSL_VERIFY_MODE to 'none' and
  58. # *comment* SMTP_LOGIN and SMTP_PASSWORD (leaving them blank is not enough).
  59. SMTP_SERVER=$SMTP_SERVER
  60. SMTP_PORT=587
  61. SMTP_LOGIN=$SMTP_LOGIN
  62. SMTP_PASSWORD=$SMTP_PASSWORD
  63. SMTP_FROM_ADDRESS=notifications@${APP_NAME}.nanoapp.io
  64. #SMTP_REPLY_TO=
  65. #SMTP_DOMAIN= # defaults to LOCAL_DOMAIN
  66. #SMTP_DELIVERY_METHOD=smtp # delivery method can also be sendmail
  67. #SMTP_AUTH_METHOD=plain
  68. #SMTP_CA_FILE=/etc/ssl/certs/ca-certificates.crt
  69. #SMTP_OPENSSL_VERIFY_MODE=peer
  70. #SMTP_ENABLE_STARTTLS_AUTO=true
  71. #SMTP_TLS=true
  72. # Optional user upload path and URL (images, avatars). Default is :rails_root/public/system. If you set this variable, you are responsible for making your HTTP server (eg. nginx) serve these files.
  73. # PAPERCLIP_ROOT_PATH=/var/lib/mastodon/public-system
  74. # PAPERCLIP_ROOT_URL=/system
  75. # Optional asset host for multi-server setups
  76. # The asset host must allow cross origin request from WEB_DOMAIN or LOCAL_DOMAIN
  77. # if WEB_DOMAIN is not set. For example, the server may have the
  78. # following header field:
  79. # Access-Control-Allow-Origin: https://example.com/
  80. # CDN_HOST=https://assets.example.com
  81. # S3 (optional)
  82. # The attachment host must allow cross origin request from WEB_DOMAIN or
  83. # LOCAL_DOMAIN if WEB_DOMAIN is not set. For example, the server may have the
  84. # following header field:
  85. # Access-Control-Allow-Origin: https://192.168.1.123:9000/
  86. # S3_ENABLED=true
  87. # S3_BUCKET=
  88. # AWS_ACCESS_KEY_ID=
  89. # AWS_SECRET_ACCESS_KEY=
  90. # S3_REGION=
  91. # S3_PROTOCOL=http
  92. # S3_HOSTNAME=192.168.1.123:9000
  93. # S3 (Minio Config (optional) Please check Minio instance for details)
  94. # The attachment host must allow cross origin request - see the description
  95. # above.
  96. # S3_ENABLED=true
  97. # S3_BUCKET=
  98. # AWS_ACCESS_KEY_ID=
  99. # AWS_SECRET_ACCESS_KEY=
  100. # S3_REGION=
  101. # S3_PROTOCOL=https
  102. # S3_HOSTNAME=
  103. # S3_ENDPOINT=
  104. # S3_SIGNATURE_VERSION=
  105. # Google Cloud Storage (optional)
  106. # Use S3 compatible API. Since GCS does not support Multipart Upload,
  107. # increase the value of S3_MULTIPART_THRESHOLD to disable Multipart Upload.
  108. # The attachment host must allow cross origin request - see the description
  109. # above.
  110. # S3_ENABLED=true
  111. # AWS_ACCESS_KEY_ID=
  112. # AWS_SECRET_ACCESS_KEY=
  113. # S3_REGION=
  114. # S3_PROTOCOL=https
  115. # S3_HOSTNAME=storage.googleapis.com
  116. # S3_ENDPOINT=https://storage.googleapis.com
  117. # S3_MULTIPART_THRESHOLD=52428801 # 50.megabytes
  118. # Swift (optional)
  119. # The attachment host must allow cross origin request - see the description
  120. # above.
  121. # SWIFT_ENABLED=true
  122. # SWIFT_USERNAME=
  123. # For Keystone V3, the value for SWIFT_TENANT should be the project name
  124. # SWIFT_TENANT=
  125. # SWIFT_PASSWORD=
  126. # Some OpenStack V3 providers require PROJECT_ID (optional)
  127. # SWIFT_PROJECT_ID=
  128. # Keystone V2 and V3 URLs are supported. Use a V3 URL if possible to avoid
  129. # issues with token rate-limiting during high load.
  130. # SWIFT_AUTH_URL=
  131. # SWIFT_CONTAINER=
  132. # SWIFT_OBJECT_URL=
  133. # SWIFT_REGION=
  134. # Defaults to 'default'
  135. # SWIFT_DOMAIN_NAME=
  136. # Defaults to 60 seconds. Set to 0 to disable
  137. # SWIFT_CACHE_TTL=
  138. # Optional alias for S3 (e.g. to serve files on a custom domain, possibly using Cloudfront or Cloudflare)
  139. # S3_ALIAS_HOST=
  140. # Streaming API integration
  141. # STREAMING_API_BASE_URL=
  142. # Advanced settings
  143. # If you need to use pgBouncer, you need to disable prepared statements:
  144. # PREPARED_STATEMENTS=false
  145. # Cluster number setting for streaming API server.
  146. # If you comment out following line, cluster number will be `numOfCpuCores - 1`.
  147. # STREAMING_CLUSTER_NUM=1
  148. # Docker mastodon user
  149. # If you use Docker, you may want to assign UID/GID manually.
  150. # UID=1000
  151. # GID=1000
  152. # LDAP authentication (optional)
  153. # LDAP_ENABLED=true
  154. # LDAP_HOST=localhost
  155. # LDAP_PORT=389
  156. # LDAP_METHOD=simple_tls
  157. # LDAP_BASE=
  158. # LDAP_BIND_DN=
  159. # LDAP_PASSWORD=
  160. # LDAP_UID=cn
  161. # PAM authentication (optional)
  162. # PAM authentication uses for the email generation the "email" pam variable
  163. # and optional as fallback PAM_DEFAULT_SUFFIX
  164. # The pam environment variable "email" is provided by:
  165. # https://github.com/devkral/pam_email_extractor
  166. # PAM_ENABLED=true
  167. # Fallback email domain for email address generation (LOCAL_DOMAIN by default)
  168. # PAM_EMAIL_DOMAIN=example.com
  169. # Name of the pam service (pam "auth" section is evaluated)
  170. # PAM_DEFAULT_SERVICE=rpam
  171. # Name of the pam service used for checking if an user can register (pam "account" section is evaluated) (nil (disabled) by default)
  172. # PAM_CONTROLLED_SERVICE=rpam
  173. # Global OAuth settings (optional) :
  174. # If you have only one strategy, you may want to enable this
  175. # OAUTH_REDIRECT_AT_SIGN_IN=true
  176. # Optional CAS authentication (cf. omniauth-cas) :
  177. # CAS_ENABLED=true
  178. # CAS_URL=https://sso.myserver.com/
  179. # CAS_HOST=sso.myserver.com/
  180. # CAS_PORT=443
  181. # CAS_SSL=true
  182. # CAS_VALIDATE_URL=
  183. # CAS_CALLBACK_URL=
  184. # CAS_LOGOUT_URL=
  185. # CAS_LOGIN_URL=
  186. # CAS_UID_FIELD='user'
  187. # CAS_CA_PATH=
  188. # CAS_DISABLE_SSL_VERIFICATION=false
  189. # CAS_UID_KEY='user'
  190. # CAS_NAME_KEY='name'
  191. # CAS_EMAIL_KEY='email'
  192. # CAS_NICKNAME_KEY='nickname'
  193. # CAS_FIRST_NAME_KEY='firstname'
  194. # CAS_LAST_NAME_KEY='lastname'
  195. # CAS_LOCATION_KEY='location'
  196. # CAS_IMAGE_KEY='image'
  197. # CAS_PHONE_KEY='phone'
  198. # Optional SAML authentication (cf. omniauth-saml)
  199. # SAML_ENABLED=true
  200. # SAML_ACS_URL=
  201. # SAML_ISSUER=http://localhost:3000/auth/auth/saml/callback
  202. # SAML_IDP_SSO_TARGET_URL=https://idp.testshib.org/idp/profile/SAML2/Redirect/SSO
  203. # SAML_IDP_CERT=
  204. # SAML_IDP_CERT_FINGERPRINT=
  205. # SAML_NAME_IDENTIFIER_FORMAT=
  206. # SAML_CERT=
  207. # SAML_PRIVATE_KEY=
  208. # SAML_SECURITY_WANT_ASSERTION_SIGNED=true
  209. # SAML_SECURITY_WANT_ASSERTION_ENCRYPTED=true
  210. # SAML_SECURITY_ASSUME_EMAIL_IS_VERIFIED=true
  211. # SAML_ATTRIBUTES_STATEMENTS_UID="urn:oid:0.9.2342.19200300.100.1.1"
  212. # SAML_ATTRIBUTES_STATEMENTS_EMAIL="urn:oid:1.3.6.1.4.1.5923.1.1.1.6"
  213. # SAML_ATTRIBUTES_STATEMENTS_FULL_NAME="urn:oid:2.16.840.1.113730.3.1.241"
  214. # SAML_ATTRIBUTES_STATEMENTS_FIRST_NAME="urn:oid:2.5.4.42"
  215. # SAML_ATTRIBUTES_STATEMENTS_LAST_NAME="urn:oid:2.5.4.4"
  216. # SAML_UID_ATTRIBUTE="urn:oid:0.9.2342.19200300.100.1.1"
  217. # SAML_ATTRIBUTES_STATEMENTS_VERIFIED=
  218. # SAML_ATTRIBUTES_STATEMENTS_VERIFIED_EMAIL=
  219. # Use HTTP proxy for outgoing request (optional)
  220. # http_proxy=http://gateway.local:8118
  221. # Access control for hidden service.
  222. # ALLOW_ACCESS_TO_HIDDEN_SERVICE=true