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,3 +1,9 @@
<IfModule proxy_fcgi_module>
# Add Authorization Header
<IfModule setenvif_module>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
</IfModule>
# PHP-FPM Handler
<FilesMatch "\.php$"> <FilesMatch "\.php$">
# Pick one of the following approaches # Pick one of the following approaches
# Use the standard TCP socket # Use the standard TCP socket
@ -6,13 +12,10 @@
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/" # SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/" SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/"
</FilesMatch> </FilesMatch>
# Définition d'une configuration de mandataire qui convient. # 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 # La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de # le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
# serveur unique. # serveur unique.
#<Proxy "fcgi://localhost/" enablereuse=on max=10> #<Proxy "fcgi://localhost/" enablereuse=on max=10>
#</Proxy> #</Proxy>
</IfModule>
# Add Authorization Header
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1

View File

@ -1,3 +1,9 @@
<IfModule proxy_fcgi_module>
# Add Authorization Header
<IfModule setenvif_module>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
</IfModule>
# PHP-FPM Handler
<FilesMatch "\.php$"> <FilesMatch "\.php$">
# Pick one of the following approaches # Pick one of the following approaches
# Use the standard TCP socket # Use the standard TCP socket
@ -6,13 +12,10 @@
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/" # SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/" SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/"
</FilesMatch> </FilesMatch>
# Définition d'une configuration de mandataire qui convient. # 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 # La partie qui est mise en correspondance avec la valeur de SetHandler est la partie qui suit
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de # le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
# serveur unique. # serveur unique.
#<Proxy "fcgi://localhost/" enablereuse=on max=10> #<Proxy "fcgi://localhost/" enablereuse=on max=10>
#</Proxy> #</Proxy>
</IfModule>
# Add Authorization Header
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1