better wording and more explanation in fpm configuration (thanks Gawain Lynch)
This commit is contained in:
parent
34d9f4401f
commit
ce7aef114c
@ -20,7 +20,7 @@
|
|||||||
; Unix user/group of processes
|
; Unix user/group of processes
|
||||||
; Note: The user is mandatory. If the group is not set, the default user's group
|
; Note: The user is mandatory. If the group is not set, the default user's group
|
||||||
; will be used.
|
; will be used.
|
||||||
; RPM: apache Choosed to be able to access some dir as httpd
|
; RPM: apache user chosen to provide access to the same directories as httpd
|
||||||
user = apache
|
user = apache
|
||||||
; RPM: Keep a group allowed to write in log dir.
|
; RPM: Keep a group allowed to write in log dir.
|
||||||
group = apache
|
group = apache
|
||||||
@ -414,9 +414,14 @@ php_admin_value[error_log] = /var/log/php-fpm/www-error.log
|
|||||||
php_admin_flag[log_errors] = on
|
php_admin_flag[log_errors] = on
|
||||||
;php_admin_value[memory_limit] = 128M
|
;php_admin_value[memory_limit] = 128M
|
||||||
|
|
||||||
; Set data paths to directories owned by process user
|
; Set the following data paths to directories owned by the FPM process user.
|
||||||
|
;
|
||||||
|
; Do not change the ownership of existing system directories, if the process
|
||||||
|
; user does not have write permission, create dedicated directories for this purpose.
|
||||||
|
;
|
||||||
|
; See warning about choosing the location of these directories on your system
|
||||||
|
; at http://php.net/session.save-path
|
||||||
php_value[session.save_handler] = files
|
php_value[session.save_handler] = files
|
||||||
php_value[session.save_path] = /var/lib/php/session
|
php_value[session.save_path] = /var/lib/php/session
|
||||||
php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
|
php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
|
||||||
|
|
||||||
;php_value[opcache.file_cache] = /var/lib/php/opcache
|
;php_value[opcache.file_cache] = /var/lib/php/opcache
|
||||||
|
Loading…
Reference in New Issue
Block a user