次の設定があります:Apache 2.4、php-fpm、mod_proxy_fgci。問題は、構成がエイリアスディレクティブで機能しないことです。phpredminをインストールしましたが、エイリアスディレクティブがProxyPassで機能しません。誰かが私を正しい方向に押すことができますか?
これは設定です:
<VirtualHost *:80>
ServerName default
# Directory
DocumentRoot /var/www/default/wwwroot
<Directory /var/www/default/wwwroot>
Options +FollowSymLinks +ExecCGI +Includes
AllowOverride All
Require all granted
</Directory>
# PHP-FPM Server
<LocationMatch "^/(.*\.php(/.*)?)$">
ProxyPass fcgi://127.0.0.1:9000/var/www/default/wwwroot/$1
</LocationMatch>
# Directory indexes
<IfModule dir_module>
DirectoryIndex index.htm index.html index.shtml index.php index.phtml
</IfModule>
Alias /phpredmin /var/www/default/wwwroot/phpredmin/public
<Directory "/var/www/default/wwwroot/phpredmin/">
AllowOverride All
require ip 127.0.0.1
</Directory>
</VirtualHost>
更新
私は追加の仮想ホストを作成し、phpredminがこの構成で動作するようになりました:
<VirtualHost *:80>
ServerName phpredmin.example.com
DocumentRoot /var/www/default/wwwroot/phpredmin
ErrorLog ${Apache_LOG_DIR}/error.log
CustomLog ${Apache_LOG_DIR}/access.log combined
LogLevel alert
DirectoryIndex index.php
ServerSignature Off
RewriteEngine on
<Directory /var/www/default/wwwroot/phpredmin>
Options -Indexes
require ip 192.168.2.0/24
require ip 192.168.10.0/24
</Directory>
Alias /phpredmin /var/www/default/wwwroot/phpredmin/public
<Directory /var/www/default/wwwroot/phpredmin/public>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . fcgi://127.0.0.1:9000/var/www/default/wwwroot/phpredmin/public/index.php [P,L]
RewriteRule ^/?(.*\.php)$ fcgi://127.0.0.1:9000/var/www/default/wwwroot/phpredmin/public/$1 [P,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^/?(.*)$ fcgi://127.0.0.1:9000/var/www/default/wwwroot/phpredmin/public/$1 [P,L]
DirectoryIndex disabled
ProxyErrorOverride on
</Directory>
Apacheは、構成ファイルを上から下に読み取ります。
一致するコマンド(プロキシパスなど)が見つかった場合、そのコマンドが実行され、残りのファイルは破棄されます。
ProxyPassの前にAliasコマンドを実行するには、ファイルの先頭に配置する必要があります。
<VirtualHost *:80>
ServerName default
# Directory
DocumentRoot /var/www/default/wwwroot
<Directory /var/www/default/wwwroot>
Options +FollowSymLinks +ExecCGI +Includes
AllowOverride All
Require all granted
</Directory>
Alias /phpredmin /var/www/default/wwwroot/phpredmin/public
<Directory "/var/www/default/wwwroot/phpredmin/">
AllowOverride All
require ip 127.0.0.1
</Directory>
# PHP-FPM Server
<LocationMatch "^/(.*\.php(/.*)?)$">
ProxyPass fcgi://127.0.0.1:9000/var/www/default/wwwroot/$1
</LocationMatch>
# Directory indexes
<IfModule dir_module>
DirectoryIndex index.htm index.html index.shtml index.php index.phtml
</IfModule>
</VirtualHost>
これが短い答えです。 httpd.confファイルに次の3行を入力すると、準備が整います。
<FilesMatch \.php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
あなたとまったく同じ構成で私のために働いた。