scinote-web/config/secrets.yml

70 lines
2.5 KiB
YAML
Raw Normal View History

2016-02-12 23:52:43 +08:00
# Be sure to restart your server when you modify this file.
2017-06-23 21:19:08 +08:00
# Your secret key is used for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
# You can use `rails secret` to generate a secure secret key.
# Make sure the secrets in this file are kept private
# if you're sharing your code publicly.
# Shared secrets are available across all environments.
# shared:
# api_key: a1B2c3D4e5F6
# Environmental secrets are only available for that specific environment.
# Be sure to restart your server when you modify this file.
2016-02-12 23:52:43 +08:00
common: &common
# ======================================================================
# Server address is used for mailer (in "confirm new email/..." emails,
# sciNote needs to know onto which URL to redirect the user for
# confirmation page)
# ======================================================================
mail_server_url: <%= ENV["MAIL_SERVER_URL"] || "localhost" %>
# ======================================================================
# Mailer configuration to define from which SMTP server to send
# e-mails.
# ======================================================================
mailer_from: <%= ENV["MAIL_FROM"] %>
mailer_reply_to: <%= ENV["MAIL_REPLYTO"] %>
mailer_address: <%= ENV["SMTP_ADDRESS"] %>
mailer_port: <%= ENV["SMTP_PORT"] || "587" %>
mailer_domain: <%= ENV["SMTP_DOMAIN"] %>
mailer_user_name: <%= ENV["SMTP_USERNAME"] %>
mailer_password: <%= ENV["SMTP_PASSWORD"] %>
# ======================================================================
# Your secret key is used for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
# You can use `rake secret` to generate a secure secret key.
# ======================================================================
# secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
2016-02-12 23:52:43 +08:00
# ======================================================================
# Write any potential environment-specific secrets here.
# ======================================================================
development:
2017-06-27 20:58:49 +08:00
secret_key_base: <%= ENV["DEVELOPMENT_KEY_BASE"] %>
2016-02-12 23:52:43 +08:00
<<: *common
test:
2017-06-27 20:58:49 +08:00
secret_key_base: <%= ENV["TEST_KEY_BASE"] %>
2016-02-12 23:52:43 +08:00
<<: *common
production:
2017-06-23 21:19:08 +08:00
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
<<: *common