Skip to content

Commit

Permalink
Simple path updatee for fpm conf
Browse files Browse the repository at this point in the history
  • Loading branch information
Magissia committed Jun 21, 2016
1 parent 29b9902 commit 8018a7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions php-fpm.conf.in.patch
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
; - the global prefix if it's been set (-p argument)
; - @prefix@ otherwise
-;include=etc/fpm.d/*.conf
+;include=/etc/php/fpm.d/*.conf
+;include=/etc/php5/fpm.d/*.conf

;;;;;;;;;;;;;;;;;;
; Global Options ;
Expand All @@ -14,7 +14,7 @@
; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
; Default Value: none
-;pid = run/php-fpm.pid
+pid = /run/php-fpm/php-fpm.pid
+pid = /run/php5-fpm/php-fpm.pid

; Error log file
; If it's set to "syslog", log is sent to syslogd instead of being written
Expand All @@ -24,7 +24,7 @@
; Note: This value is mandatory.
-listen = 127.0.0.1:9000
+;listen = 127.0.0.1:9000
+listen = /run/php-fpm/php-fpm.sock
+listen = /run/php5-fpm/php-fpm.sock

; Set listen(2) backlog.
; Default Value: 65535 (-1 on FreeBSD and OpenBSD)
Expand Down

0 comments on commit 8018a7b

Please sign in to comment.