/data and /tmp standarization

This commit is contained in:
Adam Outler
2025-11-04 22:26:35 +00:00
parent 90a07c61eb
commit 5b871865db
250 changed files with 7462 additions and 4940 deletions

View File

@@ -43,7 +43,7 @@
; (IPv6 and IPv4-mapped) on a specific port;
; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = /services/run/php.sock
listen = /tmp/run/php.sock
; Set listen(2) backlog.
; Default Value: 511 (-1 on Linux, FreeBSD and OpenBSD)
@@ -465,9 +465,9 @@ pm.max_spare_servers = 3
; Default Value: clean env
;env[HOSTNAME] = $HOSTNAME
env[PATH] = /opt/venv:/usr/local/bin:/usr/bin:/bin
env[TMP] = /services/run/tmp
env[TMPDIR] = /services/run/tmp
env[TEMP] = /services/run/tmp
env[TMP] = /tmp/run/tmp
env[TMPDIR] = /tmp/run/tmp
env[TEMP] = /tmp/run/tmp
; Additional php.ini defines, specific to this pool of workers. These settings
; overwrite the values previously defined in the php.ini. The directives are the
@@ -489,9 +489,9 @@ env[TEMP] = /services/run/tmp
; Default Value: nothing is defined by default except the values in php.ini and
; specified at startup with the -d argument
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
php_admin_value[sys_temp_dir] = /services/run/tmp
php_admin_value[upload_tmp_dir] = /services/run/tmp
php_admin_value[session.save_path] = /services/run/tmp
php_admin_value[sys_temp_dir] = /tmp/run/tmp
php_admin_value[upload_tmp_dir] = /tmp/run/tmp
php_admin_value[session.save_path] = /tmp/run/tmp
php_admin_value[output_buffering] = 262144
php_admin_flag[implicit_flush] = off
php_admin_value[realpath_cache_size] = 4096K