Update phpfcgi configuration

This commit is contained in:
Michael RICOIS 2016-09-14 16:17:08 +02:00
parent 099608ced5
commit eb77031f94
2 changed files with 42 additions and 36 deletions

View File

@ -1,18 +1,21 @@
<FilesMatch "\.php$"> <IfModule proxy_fcgi_module>
# Pick one of the following approaches # Add Authorization Header
# Use the standard TCP socket <IfModule setenvif_module>
# SetHandler "proxy:fcgi://localhost/:9000" SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket </IfModule>
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/" # PHP-FPM Handler
SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/" <FilesMatch "\.php$">
</FilesMatch> # Pick one of the following approaches
# Use the standard TCP socket
# Définition d'une configuration de mandataire qui convient. # SetHandler "proxy:fcgi://localhost/:9000"
# La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit # If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de # SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
# serveur unique. SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/"
#<Proxy "fcgi://localhost/" enablereuse=on max=10> </FilesMatch>
#</Proxy> # Définition d'une configuration de mandataire qui convient.
# La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit
# Add Authorization Header # le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1 # serveur unique.
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
#</Proxy>
</IfModule>

View File

@ -1,18 +1,21 @@
<FilesMatch "\.php$"> <IfModule proxy_fcgi_module>
# Pick one of the following approaches # Add Authorization Header
# Use the standard TCP socket <IfModule setenvif_module>
# SetHandler "proxy:fcgi://localhost/:9000" SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket </IfModule>
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/" # PHP-FPM Handler
SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/" <FilesMatch "\.php$">
</FilesMatch> # Pick one of the following approaches
# Use the standard TCP socket
# Définition d'une configuration de mandataire qui convient. # SetHandler "proxy:fcgi://localhost/:9000"
# La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit # If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de # SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
# serveur unique. SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/"
#<Proxy "fcgi://localhost/" enablereuse=on max=10> </FilesMatch>
#</Proxy> # Définition d'une configuration de mandataire qui convient.
# La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit
# Add Authorization Header # le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1 # serveur unique.
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
#</Proxy>
</IfModule>