Enable/disable delayed jobs in the secrets file
While this is not a secret and in theory should be in a file under version control, currently the CONSUL installer disables delayed jobs by default, meaning we were keeping two versions of the delayed jobs configuration file, and some existing configurations have their settings defined in a file in capistrano's `shared` folder. So we're moving existing settings to the secrets file.
This commit is contained in:
@@ -33,6 +33,7 @@ staging:
|
||||
secret_key_base: ""
|
||||
server_name: ""
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
http_basic_username: ""
|
||||
http_basic_password: ""
|
||||
@@ -55,6 +56,7 @@ preproduction:
|
||||
# authentication: "plain"
|
||||
# enable_starttls_auto: true
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
http_basic_username: ""
|
||||
http_basic_password: ""
|
||||
@@ -82,6 +84,7 @@ production:
|
||||
# authentication: "plain"
|
||||
# enable_starttls_auto: true
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
http_basic_username: ""
|
||||
http_basic_password: ""
|
||||
|
||||
Reference in New Issue
Block a user