diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-19 17:33:38 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-19 18:44:44 +0200 |
commit | f62ec14926b11a576d5f9849efe5900c243fe6a5 (patch) | |
tree | 11ca523d8bff4118fccb453f5143beeb1d9583d9 /travis | |
parent | d2aee6d2ea9668d553b05968db3f2f8335409fca (diff) | |
download | forums-f62ec14926b11a576d5f9849efe5900c243fe6a5.tar forums-f62ec14926b11a576d5f9849efe5900c243fe6a5.tar.gz forums-f62ec14926b11a576d5f9849efe5900c243fe6a5.tar.bz2 forums-f62ec14926b11a576d5f9849efe5900c243fe6a5.tar.xz forums-f62ec14926b11a576d5f9849efe5900c243fe6a5.zip |
[ticket/12741] Change the mode of the socket file
Since php 5.4.29, by default, php-fpm creates the socket with the 0600 mode
instead of 0666.
PHPBB3-12741
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/setup-webserver.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/travis/setup-webserver.sh b/travis/setup-webserver.sh index bffe2c0bf4..a6086bb9f9 100755 --- a/travis/setup-webserver.sh +++ b/travis/setup-webserver.sh @@ -48,6 +48,7 @@ else user = $USER group = $USER listen = $APP_SOCK + listen.mode = 0666 pm = static pm.max_children = 2 |