@AURAWINDSURFING - Yeah I use F-Bar for editing the sites normally. It would be for every single site on that server, it's only used as a staging server and (for now) I just want to add…
# we don't want this site listed at all
location = /robots.txt {
add_header Content-Type text/plain;
return 200 "User-agent: *\nDisallow: /\n";
}
…to every single config on that particular server at site spawn time (because I'll forget to manually do this) There are probably about 30 to 40 sites a year or more spun up on that server for us. (yeah I could make an actual robots.txt file but then I need different files on different branches or something, also this is just an example, there may be other things I want to globally change in future)
Other (production) servers I don't care about or any new servers taking on new forge config is cool too.
You're right of course, don't edit core right? Normally I do live by that. Would be nice perhaps if there were another config file loaded by forge but not updated by forge that I could edit and would be pulled in somewhere between before and after site specific configs with 'globals'.