2009-01-23 13:13:28 -05:00
|
|
|
# This is the 'salt' to add to the password before it is encrypted
|
|
|
|
|
# You need to change this to something unique for yourself
|
|
|
|
|
salt: "change-me"
|
|
|
|
|
|
|
|
|
|
|
2012-06-28 16:51:46 +02:00
|
|
|
# NOTE: openid, ldap and cas are currently not supported anymore.
|
2009-01-23 13:13:28 -05:00
|
|
|
authentication_schemes:
|
|
|
|
|
- "database"
|
2009-11-20 19:06:07 -08:00
|
|
|
|
|
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
# You'll probably want to change this to the time zone of the computer where
|
|
|
|
|
# Tracks is running. Run rake time:zones:local have Rails suggest time zone
|
|
|
|
|
# names on your system
|
2009-01-23 13:13:28 -05:00
|
|
|
time_zone: "UTC"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# setting this to true will make the cookies only available over HTTPS
|
|
|
|
|
secure_cookies: false
|
|
|
|
|
|
|
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
# Your secret key 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.
|
|
|
|
|
#
|
|
|
|
|
# if you want a nice random key, run this in rails console and copy-and-paste
|
|
|
|
|
# the result:
|
|
|
|
|
#
|
|
|
|
|
# SecureRandom.hex(64)
|
|
|
|
|
#
|
|
|
|
|
secret_token: "change-me"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Uncomment if you want to dispatch todos that come from email based on the To:
|
|
|
|
|
# address rather than the From: address.
|
2009-03-29 19:44:43 -04:00
|
|
|
# email_dispatch: 'to'
|
|
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
|
|
|
|
|
# If you want to send all email to a specific user, uncomment the following line
|
|
|
|
|
# and set the environment variable TRACKS_MAIL_RECEIVER to the login name of the
|
|
|
|
|
# user that will receive all email
|
2012-06-28 16:51:46 +02:00
|
|
|
# email_dispatch: 'single_user'
|
|
|
|
|
|
2009-03-29 19:44:43 -04:00
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
# Set this to the subdirectory you're hosting tracks in and uncomment if
|
|
|
|
|
# applicable. NOTE: you will also need to set up your web server to deal with
|
|
|
|
|
# the relative URL. Mongrel, for example, has a --prefix option.
|
2009-01-23 13:13:28 -05:00
|
|
|
# subdir: "/tracks"
|
|
|
|
|
|
2012-06-28 16:51:46 +02:00
|
|
|
|
2009-03-31 22:32:29 +02:00
|
|
|
# Set to true to allow anyone to sign up for a username.
|
|
|
|
|
open_signups: false
|
2009-01-23 13:13:28 -05:00
|
|
|
|
2011-10-04 20:14:36 +02:00
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
# When integrating your tracks instance with http://cloudmailin.com/ by using
|
|
|
|
|
# the /integrations/cloudmailin URL, this value is the cloudmailin-secret for
|
|
|
|
|
# verifying the authenticity of the request.
|
2012-04-05 22:19:47 +02:00
|
|
|
# (see http://docs.cloudmailin.com/validating_the_sender)
|
2011-10-04 20:14:36 +02:00
|
|
|
# cloudmailin: asdasd
|
2012-12-23 21:03:37 +01:00
|
|
|
|
2013-05-07 09:21:22 +02:00
|
|
|
|
2012-12-23 21:03:37 +01:00
|
|
|
# change this to reflect the email address of the admin that you want to show
|
|
|
|
|
# on the signup page
|
|
|
|
|
admin_email: my.email@domain.com
|