NginxをメインWebサーバーとして設定し、その背後に2つのMochiwebベースのサーバーがあります。特定の要求は、これら2つのサーバーに逆プロキシされます。今、nginxを使用してphpmyadmin(/ var/www/nginx-default/phpMyAdminにあります)にアクセスしたいのですが、エラー404が見つかりませんと言い続けています。ここで明らかな何かを見逃していますか?
server {
############### General Settings ####################
listen 80;
server_name localhost;
access_log /home/me/dev/wwwaccess.log;
############## Document Root #######################
location / {
root /home/me/dev;
index index.html index.htm index.php;
}
############## PHPMyAdmin #######################
location /phpmyadmin {
root /var/www/nginx-default/phpMyAdmin;
index index.html index.htm index.php;
}
############## Proxy Settings for FastCGI Server #####
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/me/dev$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
############# Proxy Settings for Mochi1 ###############
location /mochi1 {
proxy_pass http://127.0.0.1:8000;
proxy_redirect off;
proxy_set_header Host $Host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 3600;
proxy_buffering off;
}
############# Proxy Settings for Mochi2 ###############
location /mochi2 {
proxy_pass http://127.0.0.1:8001;
proxy_redirect off;
proxy_set_header Host $Host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 3600;
proxy_buffering off;
}
############# Error redirection pages ################
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/me/dev;
}
}
ここでの問題は、「最良」のlocation
ディレクティブのみがこの順序で取得されることです。
location = <path> (longest match wins)
location ^~ <path> (longest match wins)
location ~ <path> (first defined match wins)
location <path> (longest match wins)
このルールセットを使用すると、/phpmyadmin
location
ディレクティブは、正規表現「.php$
"location
ディレクティブ。したがって、前者は完全に無視されます。さらに、php fastcgiディレクティブは/home/me/dev
ディレクトリ。これは、phpMyAdminにまったくアクセスできないことを意味します。リライトを使用して、phpMyAdminスクリプトの正しいルートを取得できます。
location ~ \.php$ {
set $php_root /home/me/dev;
if ($request_uri ~* /phpmyadmin) {
set $php_root /var/www/nginx-default/phpMyAdmin;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $php_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
「ルート」を直接設定します。ディレクティブを減らし、より多くの変数を設定するために必要なコンピューティングを減らします。また、現在受け入れられている回答では正しく設定されないもの(fastcgi_param DOCUMENT_ROOTなど)もあります。ただし、このメソッドはすべてを処理します。
location ~ \.php$ {
if ($request_uri ~* /phpmyadmin) {
root /var/www/nginx-default/phpMyAdmin;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}
私はこれで何時間も苦労しましたが、上記のソリューションはどれもうまくいきませんでした(index.php、index.phpを引数で実行し、index.php以外のphpスクリプトを実行する必要があるため)次のように:
location /php-app {
passenger_enabled off;
alias /path/to/php-app/$1;
index index.php index.html;
try_files $uri $uri/ @rewrite;
}
location @rewrite {
rewrite ^/php-app(.*)$ /index.php?q=$1 last;
}
location ~ \.php$ {
alias /path/to/php-app/$1;
rewrite ^/php-app(.*)$ $1 last;
passenger_enabled off;
fastcgi_pass unix:/tmp/php-fpm.socket;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /path/to/php-app$fastcgi_script_name;
fastcgi_intercept_errors on;
}
おそらくindex.htmlを検索しますか?に変更してみてください
location /phpmyadmin {
root /var/www/nginx-default/phpMyAdmin;
index index.php;
}
ケース関連の問題を回避するために、以下のセクションを追加します
location /phpMyAdmin {
rewrite ^/* /phpmyadmin last;
}