summaryrefslogtreecommitdiff
path: root/sites/default
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-22 01:07:02 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-22 01:07:02 +0000
commit368df6dc5f91046d6a314ea4c06c5d7997de0594 (patch)
tree0ac05aaca37d8328577d88450367d8eac04def8b /sites/default
parent0220996178a6affcedc1fd74a5c71c14353fa370 (diff)
downloadbrdo-368df6dc5f91046d6a314ea4c06c5d7997de0594.tar.gz
brdo-368df6dc5f91046d6a314ea4c06c5d7997de0594.tar.bz2
- Patch #602586 by dww: document authorize.php killswitch in default.settings.php.
Diffstat (limited to 'sites/default')
-rw-r--r--sites/default/default.settings.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index 937cc420e..b8b4dbbe7 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -343,3 +343,19 @@ $conf = array(
# $conf['blocked_ips'] = array(
# 'a.b.c.d',
# );
+
+/**
+ * Authorized file system operations:
+ *
+ * The Update manager module included with Drupal provides a mechanism for
+ * site administrators to securely install missing updates for the site
+ * directly through the web user interface by providing either SSH or FTP
+ * credentials. This allows the site to update the new files as the user who
+ * owns all the Drupal files, instead of as the user the webserver is running
+ * as. However, some sites might wish to disable this functionality, and only
+ * update the code directly via SSH or FTP themselves. This setting completely
+ * disables all functionality related to these authorized file operations.
+ *
+ * Remove the leading hash signs to disable.
+ */
+# $conf['allow_authorize_operations'] = FALSE;