From c32d50dacb788621be7f2cfd024bc3c4e432688c Mon Sep 17 00:00:00 2001 From: Keegan Rankin Date: Wed, 20 Jul 2022 19:42:55 +0000 Subject: [PATCH] Update syncing and config setup documentation --- tools/creating-new-drutopia-site.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/creating-new-drutopia-site.md b/tools/creating-new-drutopia-site.md index d39e4be..dd7ea8a 100644 --- a/tools/creating-new-drutopia-site.md +++ b/tools/creating-new-drutopia-site.md @@ -111,9 +111,11 @@ $settings['config_sync_directory'] = '../config'; While in `web/sites/default/settings.php` also prevent site administrators being told they can install new modules when they can't and add: ```php -$conf['allow_authorize_operations'] = FALSE; +$settings['allow_authorize_operations'] = FALSE; ``` +This `settings.php` file is only being used for local development. Drutopia host is responsible for creating all settings during deployment. + (All this should be updated to use a distribution-wide settings.php when we have that. Until the, use `git add -f web/sites/default/settings.php` to include this in your repo) ```{note}