1. ホーム
  2. nginx

[解決済み] Nginxのサブドメイン設定

2023-06-29 12:55:17

質問

nginx が apache のリバースプロキシとして動作しています。新しいサブドメインを追加する必要があります。 を追加する必要がありますが、同時に、デフォルトのホストにあるすべてのlocationとproxy_passディレクティブをサブドメインにも適用させたいと考えています。

デフォルトのホストから新しいサブドメインにルールをコピーすれば動作することは分かっていますが、サブドメインにルールを継承させる方法はあるでしょうか? 以下は設定例です。

server {
    listen       80;
    server_name  www.somesite.com;
    access_log  logs/access.log;
    error_log  logs/error.log error;


   location /mvc {
      proxy_pass  http://localhost:8080/mvc;
   }


   location /assets {
      alias   /var/www/html/assets;
      expires     max;
   }

   ... a lot more locations
}

server {
    listen       80;
    server_name  subdomain.somesite.com;

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

ありがとうございます。

どのように解決するのですか?

共通部分を別の設定ファイルに移動して include を両方のサーバーコンテキストから呼び出すことができます。これでうまくいくはずです。

server {
  listen 80;
  server_name server1.example;
  ...
  include /etc/nginx/include.d/your-common-stuff.conf;
}

server {
  listen 80;
  server_name another-one.example;
  ...
  include /etc/nginx/include.d/your-common-stuff.conf;
}

編集:これは実際に私の実行中のサーバーからコピーされた例です。私は基本的なサーバーの設定を /etc/nginx/sites-enabled で設定しています (Ubuntu/Debian の nginx では普通のことです)。例えば、私のメインサーバは bunkus.org のコンフィギュレーションファイルは /etc/nginx/sites-enabled で、このようになっています。

server {
  listen   80 default_server;
  listen   [2a01:4f8:120:3105::101:1]:80 default_server;

  include /etc/nginx/include.d/all-common;
  include /etc/nginx/include.d/bunkus.org-common;
  include /etc/nginx/include.d/bunkus.org-80;
}

server {
  listen   443 default_server;
  listen   [2a01:4f8:120:3105::101:1]:443 default_server;

  include /etc/nginx/include.d/all-common;
  include /etc/nginx/include.d/ssl-common;
  include /etc/nginx/include.d/bunkus.org-common;
  include /etc/nginx/include.d/bunkus.org-443;
}

例として、ここでは /etc/nginx/include.d/all-common の両方からインクルードされたファイルです。 server の両方のコンテキストからインクルードされます。

index index.html index.htm index.php .dirindex.php;
try_files $uri $uri/ =404;

location ~ /\.ht {
  deny all;
}

location = /favicon.ico {
  log_not_found off;
  access_log off;
}

location ~ /(README|ChangeLog)$ {
  types { }
  default_type text/plain;
}