diff --git a/.gitlint b/.gitlint index 4694e3a8a4493f452ec83286faf4d6fc76e0737d..08767b19719dfed1a13611432c12cc8c1b620611 100644 --- a/.gitlint +++ b/.gitlint @@ -5,4 +5,7 @@ regex-style-search=True [author-valid-email] regex=@[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9](\.[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])+$ +[ignore-body-lines] +regex=^(Fixes|Closes):?\s+[#][0-9]+ + # vim:ft=cfg diff --git a/data/fpm.conf b/data/fpm.conf index 407f3aed220fdb0a150f33e66811ad2031718ecd..f99c013489a5a8d34c5cc19f2305c673ca9e7ff3 100644 --- a/data/fpm.conf +++ b/data/fpm.conf @@ -2,3 +2,4 @@ access.format = "[%{%Y-%m-%dT%H:%M:%S%z}t] %{REMOTE_ADDR}e %m %{REQUEST_URI}e %s ping.path = "/.probe" ping.response = "OK" +access.suppress_path[] = "/.probe" diff --git a/scripts/compile-imagick.sh b/scripts/compile-imagick.sh index f75695ab18412f57633581f3f54ad71a836d0c68..ba7d3cb31ebc50cb7185492b226b5d29bf94ae16 100755 --- a/scripts/compile-imagick.sh +++ b/scripts/compile-imagick.sh @@ -46,9 +46,13 @@ get_tarball() cd $(mktemp -d) +CPPFLAGS=( + -Dphp_strtolower=zend_str_tolower +) + get_tarball | tar -xf- --strip-components=1 phpize -./configure +./configure CPPFLAGS="${CPPFLAGS[*]}" make install echo "extension=imagick.so" > /usr/local/etc/php/conf.d/imagick.ini