0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Nginxのリクエスト処理の流れについて

Last updated at Posted at 2025-03-26

Nginxがリクエストを受け取り処理を行う流れや優先順位と設定ファイルの対応関係についての認識が曖昧だったのでまとめました。

1. NGINX のリクエスト処理の流れ

  1. クライアントが HTTP リクエストを送信
    • Hostヘッダーをもとに適切なserverブロックを選択
    • e.g. GET /index.html HTTP/1.1 Host: example.com
  2. server_nameを元に、一致するserverを探す
    • 一致しない場合はdefault_server(または最初のserver)が選ばれる
    • locationディレクティブで処理を決定
  3. リクエストされたパス(/index.htmlなど)に合致したlocationブロックを選択
  4. 対応する処理を実行
    • rootディレクティブ : 静的ファイルを返す
    • proxy_pass : 別のサーバーにリクエストを転送
    • return : 即座にレスポンスを返す(リダイレクトなど)
    • rewrite : URL をリライトする

2. server ブロックの選択

NginxはリクエストのHostヘッダーを元に、以下の優先順位で適切なserverブロックを選ぶ

  1. server_nameの完全一致
  2. ワイルドカード(*.example.com など)
  3. default_serverが適用(なければ最初のserver)

e.g.

server {
    listen 80;
    server_name example.com;
}
server {
    listen 80;
    server_name *.example.com;
}
server {
    listen 80 default_server;
    server_name _;
}
Hostヘッダー 適用されるserver
example.com 1番目のserver(完全一致)
app.example.com 2番目のserver(ワイルドカード)
unknown.com 3番目のserver(default_server)

server_nameについてはこちら参考

3. location ブロックの選択ルール

serverが決まったら、リクエストURLに対して最も適したlocationブロックが選ばれる
マッチングの優先順位は以下の通り

  1. 完全一致( location = /exact/path
  2. 前方一致( location /prefix
  3. 正規表現( location ~ regex
  4. デフォルト( location /
server {
    listen 80;
    server_name example.com;

    location = /ping {
        return 200 "pong";
    }
    location /api/ {
        proxy_pass http://backend;
    }
    location ~ \.php$ {
        fastcgi_pass php-fpm;
    }
    location / {
        root /var/www/html;
    }
}
リクエストURL 適用されるlocation
/ping location = /ping(完全一致)
/api/users location /api/(前方一致)
/index.php location ~ .php$(正規表現)
/index.html location /(デフォルト)

4. リバースプロキシ (proxy_pass)

proxy_passを使うと、Nginxはリクエストをバックエンド(別のサーバー)に転送する

e.g. http://example.com/api/usersのリクエストをhttp://backend/api/usersに転送

  • 複数サーバー指定(負荷分散)
# バックエンドの定義
upstream backend {
    server 192.168.1.100:8080;
    server 192.168.1.101:8080;
}
# リバースプロキシ設定
server {
    listen 80;
    server_name example.com;

    location /api/ {
        proxy_pass http://backend;
    }
}
  • ローカルのアプリケーション
upstream backend {
    server localhost:8080;
}

server {
    listen 80;
    server_name example.com;

    location /api/ {
        proxy_pass http://backend;
    }
}

5. 静的ファイルの処理 (root & index)

rootはドキュメントルートを設定。
indexはデフォルトのファイル (index.html) を指定。

e.g. -> http://example.com/にアクセスすると/var/www/html/index.htmlを返す

location / {
    root /var/www/html;
    index index.html;
}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?