summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-12-16 13:34:03 +0100
committerRemi Collet <fedora@famillecollet.com>2015-12-16 13:34:03 +0100
commita25290886ea6bf2f3068934d50153f56c95374a9 (patch)
tree244c3b7e56426a23e820661b0a7f77732836fb80
parentd937e965fe4597181fd9717e8b91730d1c5fd0fa (diff)
fpm: fix socket path
-rw-r--r--php.spec4
1 files changed, 2 insertions, 2 deletions
diff --git a/php.spec b/php.spec
index 6a13089..b952884 100644
--- a/php.spec
+++ b/php.spec
@@ -1379,11 +1379,11 @@ sed -e '/php-fpm.pid/s:/var:%{_localstatedir}:' \
%if %{with_httpd2410}
# Switch to UDS
# FPM
-sed -e 's@127.0.0.1:9000@/run/php-fpm/www.sock@' \
+sed -e 's@127.0.0.1:9000@%{_localstatedir}/run/php-fpm/www.sock@' \
-e 's@^;listen.acl_users@listen.acl_users@' \
-i $RPM_BUILD_ROOT%{_sysconfdir}/php-fpm.d/www.conf
# Apache
-sed -e 's@proxy:fcgi://127.0.0.1:9000@proxy:unix:/run/php-fpm/www.sock|fcgi://localhost@' \
+sed -e 's@proxy:fcgi://127.0.0.1:9000@proxy:unix:%{_localstatedir}/run/php-fpm/www.sock|fcgi://localhost@' \
-i $RPM_BUILD_ROOT%{_httpd_confdir}/%{name}.conf
%endif