diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-12-14 13:38:21 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-12-14 13:38:21 +0100 |
commit | 8e30385da9653c09480071daa9939aef2e9fd033 (patch) | |
tree | 6dfff2d33636b7a1a087ac2feda6f72221a69658 | |
parent | 066e22874b6b54773ffedffb455f791b0ecadbd7 (diff) | |
parent | 402c1bff01e5fb649a5afd2ba954d187a7de85a3 (diff) |
Merge pull request #251 from Ch00k/master
Clarify temp/logs directories permissions
-rw-r--r-- | config/defaults.inc.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index ee836e68e..e369608a2 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -318,11 +318,13 @@ $config['auto_create_user'] = true; // Enables possibility to log in using email address from user identities $config['user_aliases'] = false; -// use this folder to store log files (must be writeable for apache user) +// use this folder to store log files +// must be writeable for the user who runs PHP process (Apache user if mod_php is being used) // This is used by the 'file' log driver. $config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/'; -// use this folder to store temp files (must be writeable for apache user) +// use this folder to store temp files +// must be writeable for the user who runs PHP process (Apache user if mod_php is being used) $config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/'; // expire files in temp_dir after 48 hours |