mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2026-01-10 01:51:14 +00:00
Rebuild docker-entrypoint scripts
This commit is contained in:
10
Dockerfiles/base/data/php-fpm.d/docker.conf
Normal file
10
Dockerfiles/base/data/php-fpm.d/docker.conf
Normal file
@@ -0,0 +1,10 @@
|
||||
[www]
|
||||
; Keep env variables set by docker
|
||||
clear_env = no
|
||||
|
||||
; Redirect worker stdout and stderr into main error log. If not set, stdout and
|
||||
; stderr will be redirected to /dev/null according to FastCGI specs.
|
||||
; Note: on highloaded environement, this can cause some delay in the page
|
||||
; process time (several ms).
|
||||
; Default Value: no
|
||||
catch_workers_output = yes
|
||||
3
Dockerfiles/base/data/php-fpm.d/listen.conf
Normal file
3
Dockerfiles/base/data/php-fpm.d/listen.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
[www]
|
||||
; Ensure to listen here
|
||||
listen = 9000
|
||||
6
Dockerfiles/base/data/php-fpm.d/logfiles.conf
Normal file
6
Dockerfiles/base/data/php-fpm.d/logfiles.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
[global]
|
||||
error_log = /proc/self/fd/2
|
||||
|
||||
[www]
|
||||
; if we send this to /proc/self/fd/1, it never appears
|
||||
access.log = /proc/self/fd/2
|
||||
2
Dockerfiles/base/data/php-fpm.d/loglevel.conf
Normal file
2
Dockerfiles/base/data/php-fpm.d/loglevel.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
[global]
|
||||
log_level = notice
|
||||
@@ -4,9 +4,6 @@
|
||||
user = devilbox
|
||||
group = devilbox
|
||||
|
||||
; if we send this to /proc/self/fd/1, it never appears
|
||||
access.log = /proc/self/fd/2
|
||||
|
||||
; Ensure to listen here
|
||||
listen = 9000
|
||||
|
||||
5
Dockerfiles/base/data/php-fpm.d/user.conf
Normal file
5
Dockerfiles/base/data/php-fpm.d/user.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
[www]
|
||||
|
||||
; User and Group
|
||||
user = devilbox
|
||||
group = devilbox
|
||||
Reference in New Issue
Block a user