diff options
author | John Klug <john.klug@multitech.com> | 2017-06-20 14:34:11 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-06-20 14:34:11 -0500 |
commit | 366afa1928c483eaa6fd9862e28cbd4bbda315f2 (patch) | |
tree | 3ae487b22c6cb74123a4b89f34377112a30fad1c /recipes-extended | |
parent | 7b1a9e25a0b2bda8bad6e699f91633e625cfd140 (diff) | |
download | meta-mlinux-366afa1928c483eaa6fd9862e28cbd4bbda315f2.tar.gz meta-mlinux-366afa1928c483eaa6fd9862e28cbd4bbda315f2.tar.bz2 meta-mlinux-366afa1928c483eaa6fd9862e28cbd4bbda315f2.zip |
Replace php-cgi example with php-fpm example.
Diffstat (limited to 'recipes-extended')
-rw-r--r-- | recipes-extended/lighttpd/lighttpd/lighttpd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-extended/lighttpd/lighttpd/lighttpd.conf b/recipes-extended/lighttpd/lighttpd/lighttpd.conf index ad462f8..7fde9ca 100644 --- a/recipes-extended/lighttpd/lighttpd/lighttpd.conf +++ b/recipes-extended/lighttpd/lighttpd/lighttpd.conf @@ -206,12 +206,12 @@ static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) #### fastcgi module ## read fastcgi.txt for more info -## for PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini +## php-fpm is now the preferred method of doing fast cgi with php. #fastcgi.server = ( ".php" => # ( "localhost" => # ( -# "socket" => "/tmp/php-fastcgi.socket", -# "bin-path" => "/usr/local/bin/php" +# "socket" => "/var/run/php-fpm.socket", +# "broken-scriptfilename" => "enable" # ) # ) # ) |