mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
11 lines
265 B
Ruby
11 lines
265 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Rails.application.configure do
|
||
|
config.x.cache_buster_enabled = ENV['CACHE_BUSTER_ENABLED'] == 'true'
|
||
|
|
||
|
config.x.cache_buster = {
|
||
|
secret_header: ENV['CACHE_BUSTER_SECRET_HEADER'],
|
||
|
secret: ENV['CACHE_BUSTER_SECRET'],
|
||
|
}
|
||
|
end
|