Is it valid to add a single filepath (not a directory/folder) to the open_basedir
config in PHP?
Is this valid:
/var/log/apache2/php.log
Or MUST it be
/var/log/apache2/
Is it valid to add a single filepath (not a directory/folder) to the open_basedir
config in PHP?
Is this valid:
/var/log/apache2/php.log
Or MUST it be
/var/log/apache2/
Despite the docs saying the parameters are seperated directories, it works also with specific files.
Example:
You can write now to the file
php.log
, but, you can't work on the directory/var/log/apache2
.Per the PHP docs - only directories are supported.