summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-09-03 14:06:56 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-09-03 14:08:17 +0200
commit61dcae50d5bdc6e0f9565d63fda58257bc489cdd (patch)
tree8b5ac983ce4e260c7248f37bca300b75fbc65c87 /php.ini-development
parent6255308624a2a6bdbfa8581b9b920a8d180e458f (diff)
downloadphp-git-61dcae50d5bdc6e0f9565d63fda58257bc489cdd.tar.gz
Document opcache.preload_user directive
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development5
1 files changed, 5 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development
index d7ba908fe0..920dd5d23a 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1891,6 +1891,11 @@ ldap.max_links = -1
; http://php.net/opcache.preload
;opcache.preload=
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; http://php.net/opcache.preload_user
+;opcache.preload_user=
+
; Prevents caching files that are less than this number of seconds old. It
; protects from caching of incompletely updated files. In case all file updates
; on your site are atomic, you may increase performance by setting it to "0".