-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shared settings files for multisite #2989
Comments
Hey @shelane. I think there's probably room for a code fix to ensure that a folder named multisites:
- default
- site1
- site2
# - settings Obviously you don't have to include |
I'm going to have to play with this to replicate and make sure I grok what is happening, but sure sounds like a bug. |
I confirmed the reported behavior and put in a PR that fixes it. The problem is that when a I'm torn though as to if this is really the best approach. Maybe instead what we should do is explicitly populate the multisites config array with |
According to the
/vendor/acquia/blt/settings/blt.settings.php
, any settings.php files in/docroot/sites/settings
will be included. I created a base.settings.php and a shared.settings.php file in that location. When the commandblt blt:init:settings
is run, it does indeed included them, but it treats the/docroot/sites/settings
as if it's a multisite and adds all the other settings files in that directory so it looks like:How do I have a "shared settings" directory without getting it turned into a "site" directory?
The text was updated successfully, but these errors were encountered: