Update phpfcgi configuration
This commit is contained in:
parent
099608ced5
commit
eb77031f94
@ -1,18 +1,21 @@
|
||||
<FilesMatch "\.php$">
|
||||
# Pick one of the following approaches
|
||||
# Use the standard TCP socket
|
||||
# SetHandler "proxy:fcgi://localhost/:9000"
|
||||
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
|
||||
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
|
||||
SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/"
|
||||
</FilesMatch>
|
||||
|
||||
# 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
|
||||
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
|
||||
# serveur unique.
|
||||
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
|
||||
#</Proxy>
|
||||
|
||||
# Add Authorization Header
|
||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||
<IfModule proxy_fcgi_module>
|
||||
# Add Authorization Header
|
||||
<IfModule setenvif_module>
|
||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||
</IfModule>
|
||||
# PHP-FPM Handler
|
||||
<FilesMatch "\.php$">
|
||||
# Pick one of the following approaches
|
||||
# Use the standard TCP socket
|
||||
# SetHandler "proxy:fcgi://localhost/:9000"
|
||||
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
|
||||
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
|
||||
SetHandler "proxy:unix:/var/run/php5-fpm.sock|fcgi://localhost/"
|
||||
</FilesMatch>
|
||||
# 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
|
||||
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
|
||||
# serveur unique.
|
||||
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
|
||||
#</Proxy>
|
||||
</IfModule>
|
@ -1,18 +1,21 @@
|
||||
<FilesMatch "\.php$">
|
||||
# Pick one of the following approaches
|
||||
# Use the standard TCP socket
|
||||
# SetHandler "proxy:fcgi://localhost/:9000"
|
||||
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
|
||||
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
|
||||
SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/"
|
||||
</FilesMatch>
|
||||
|
||||
# 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
|
||||
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
|
||||
# serveur unique.
|
||||
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
|
||||
#</Proxy>
|
||||
|
||||
# Add Authorization Header
|
||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||
<IfModule proxy_fcgi_module>
|
||||
# Add Authorization Header
|
||||
<IfModule setenvif_module>
|
||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||
</IfModule>
|
||||
# PHP-FPM Handler
|
||||
<FilesMatch "\.php$">
|
||||
# Pick one of the following approaches
|
||||
# Use the standard TCP socket
|
||||
# SetHandler "proxy:fcgi://localhost/:9000"
|
||||
# If your version of httpd is 2.4.9 or newer (or has the back-ported feature), you can use the unix domain socket
|
||||
# SetHandler "proxy:unix:/path/to/app.sock|fcgi://localhost/"
|
||||
SetHandler "proxy:unix:/var/run/php7.0-fpm.sock|fcgi://localhost/"
|
||||
</FilesMatch>
|
||||
# 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
|
||||
# le "pipe". Si vous devez faire une distinction, "localhost" peut être changé en un nom de
|
||||
# serveur unique.
|
||||
#<Proxy "fcgi://localhost/" enablereuse=on max=10>
|
||||
#</Proxy>
|
||||
</IfModule>
|
Loading…
Reference in New Issue
Block a user