X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/29e707d543bf1f2d75e39b91ed5b66e0b0212f6d..5bb7bf7aa78aa8bc9876f3ec3502572f4b6809d3:/cookbooks/php/resources/fpm.rb?ds=inline diff --git a/cookbooks/php/resources/fpm.rb b/cookbooks/php/resources/fpm.rb index abdc582c8..13c973580 100644 --- a/cookbooks/php/resources/fpm.rb +++ b/cookbooks/php/resources/fpm.rb @@ -17,6 +17,8 @@ # limitations under the License. # +unified_mode true + default_action :create property :pool, :kind_of => String, :name_property => true @@ -51,9 +53,12 @@ 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}" + options "--phpfpm.scrape-uri=#{scrape_uri} --phpfpm.fix-process-count" + labels "pool" => new_resource.pool end else prometheus_exporter "phpfpm" do @@ -91,7 +96,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