Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update some more config following Rails 8 upgrade
Here are some updates to a handful of config settings that I didn't spend enough time looking into when I ran `rails app:update` the other day following the upgrade to Rails 8. `config.cache_store`: The before and after `config.cache_store` settings are both just different eras of Rails default config. I don't think we're invested in the old default, so I'm accepting the new suggestion. `config.active_record.query_log_tags_enabled`: Enabling SQL query log tags in development doesn't sound very risky. `config.public_file_server.enabled`: Rails's public file server used to be off by default but that was apparently switched to on by default in a recent Rails version. The environment variable `RAILS_SERVE_STATIC_FILES` is something that Rails itself introduced and I haven't found any evidence to suggest that this app ever set the variable, so in practice the public file server was always off. I don't see any reason to change that now.
- Loading branch information