c3a9ac7391
and move secrets into Rails credentials for both beta and production environments.
26 lines
503 B
YAML
26 lines
503 B
YAML
default_options: &default_options
|
|
store_options:
|
|
# Cap age of oldest cache entry to fulfill retention policies
|
|
# max_age: <%= 60.days.to_i %>
|
|
max_size: <%= 256.megabytes %>
|
|
namespace: <%= Rails.env %>
|
|
|
|
default_connection: &default_connection
|
|
connects_to:
|
|
database:
|
|
writing: :cache
|
|
|
|
development:
|
|
<<: *default_connection
|
|
<<: *default_options
|
|
|
|
test:
|
|
<<: *default_options
|
|
|
|
production: &production
|
|
<<: *default_connection
|
|
<<: *default_options
|
|
|
|
beta:
|
|
<<: *production
|