ディレクトリに応じてリダイレクトする

ディレクトリに応じてリダイレクトする

現在のロード バランサーでは、次のようにクラスターにリダイレクトするように設定しています。

upstream myapp1 {
    server 192.168.0.20; #RP1
}

server {
    listen 80;

    location / {
        proxy_pass http://myapp1;
        proxy_set_header Host $host;
    }
}

それはうまく動作します。

しかし、私のウェブサーバーには多くの「ストレス」を抱えたディレクトリがありますwww.example.com/local/

192.168.1.10すべてのトラフィックをローカル ディレクトリに転送するように、ロード バランサ (最も強力で現在のサーバー) にリダイレクトする方法があるかどうか疑問に思っていました/var/www/local/。一方、upstream myapp1他のすべてのディレクトリはリダイレクトされます。


私はこれを試しました:

さて、私が使用したいディレクトリは192.168.1.10wwww.example.com/local、サーバー ( 192.168.1.10)では/local、このディレクトリに次のように権限を与えました:

sudo chown -R www-data:www-data /local

/etc/nginx/sites-available/default私はこれをオンに入れました192.168.1.10:

upstream myapp1 {
    server 192.168.0.20; #RP1
}

server {
    listen 80;

    location / {
        proxy_pass http://myapp1;
        proxy_set_header Host $host;
    }

    location /local/ {
        root /local;
        index index.php index.html index.htm;
    }

    server_name 192.168.1.10;

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location @extensionless-php {
        rewrite ^(.*)$ $1.php last;
    }
}

しかし、動作しません。エラーログが表示されます

*1 "/local/local/index.php" が見つかりません (2: そのようなファイルまたはディレクトリはありません)`

なぜディレクトリを見ているのでしょうか/local/local/...また、テスト目的でそのファイルとディレクトリを追加したところ、エラーログが表示されます

0.0.0.0:80 の競合するサーバー名「192.168.1.10」は無視されます

さて、他のファイルを削除して整理しました/etc/nginx/sites-enabled/

今、アクセスすると404ページが表示されwww.example.com/local/、エラーログは表示されません。

答え1

複数指定できますlocationリクエストを異なる方法で処理するディレクティブ:

upstream myapp1 {
    server 192.168.0.20; #RP1
}
upstream myapp2 {
    server 192.168.0.10; # some other machine?
}

server {
    listen 80;

    # server requests to myapp1 if there is no more specific match
    location / {
        proxy_pass http://myapp1;
        proxy_set_header Host $host;
    }

    # serve requests to this path from a different host    
    location /foo/ {
        proxy_pass http://myapp2;
        proxy_set_header Host $host;
    }

    # serve requests to this path from the local disk
    location /this-server/ {
        root /var/www;
    }
}

関連情報