mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
65edbb609c
This reverts commit 47e718f5b2
.
15 lines
481 B
Ruby
15 lines
481 B
Ruby
# We have had lots of config issues with SECRET_TOKEN to avoid this mess we are moving it to redis
|
|
# if you feel strongly that it does not belong there use ENV['SECRET_TOKEN']
|
|
#
|
|
token = ENV['SECRET_TOKEN']
|
|
unless token
|
|
token = $redis.get('SECRET_TOKEN')
|
|
unless token && token.length == 128
|
|
token = SecureRandom.hex(64)
|
|
$redis.set('SECRET_TOKEN',token)
|
|
end
|
|
end
|
|
|
|
Discourse::Application.config.secret_token = token
|
|
Discourse::Application.config.secret_key_base = token
|