]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/php/resources/fpm.rb
Run phpfpm exporter in group www-data to allow socket access
[chef.git] / cookbooks / php / resources / fpm.rb
index 657f3b51b285e9d6302219c28fff1c855d8b593c..b63a0c814a2de01e85891fb33bd1019d6670d7a9 100644 (file)
@@ -53,7 +53,9 @@ action :create do
   if new_resource.prometheus_port
     prometheus_exporter "phpfpm" do
       port new_resource.prometheus_port
+      restrict_address_families "AF_UNIX"
       service service_name
+      group "www-data"
       command "server"
       options "--phpfpm.scrape-uri=#{scrape_uri}"
     end
@@ -93,7 +95,7 @@ action_class do
     if new_resource.port
       "tcp://127.0.0.1:#{new_resource.port}/status"
     else
-      "unix:///run/php/#{new_resource.pool}.sock;/status"
+      "unix:///run/php/php-#{new_resource.pool}-fpm.sock;/status"
     end
   end
 end