web-dev-qa-db-ja.com

CentOS上のNginxのルートドメインにサブドメインをリダイレクトするにはどうすればよいですか?

私はNginxとPumaでCentosを使用しています。すべてのサブドメインをメインルートドメインにリダイレクトしたいので、ここの手順に従いました-- https://stackoverflow.com/questions/26801479/nginx-redirect-all-subdomains-to-main-ドメイン 。しかし、私はそれを動作させることができません。以下は私の構成です

upstream projecta {
  server unix:///home/Rails/projecta_production/shared/sockets/puma.sock;
}

server {
  listen 80;
  server_name mydomein.com;
  return 301 http://mydomein.com$request_uri;
  root /home/Rails/projecta_production/public; # I assume your app is located at this location

  location / {
    proxy_pass http://projecta; # match the name of upstream directive which is defined above
    proxy_set_header Host $Host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }

  location ~* ^/assets/ {
    # Per RFC2616 - 1 year maximum expiry
    expires 1y;
    add_header Cache-Control public;

    # Some browsers still send conditional-GET requests if there's a
    # Last-Modified header or an ETag header even if they haven't
    # reached the expiry date sent in the Expires header.
    add_header Last-Modified "";
    add_header ETag "";
    break;
  }
}

「return301 http://mydomein.com $ request_uri;」を除外するとその場合、私のサイトはルートドメインで機能しますが、どのサブドメインでも機能しません(たとえば、サブドメインを表示すると、デフォルトのNginxインデックスページが表示されます)。すべてのサブドメインをメインドメインにリダイレクトし、Rails/Puma構成を保持するにはどうすればよいですか?

1
Dave

現在、apexドメインvhostでリダイレクトをリッスンしています。あなたがする必要があるのは、頂点にリダイレクトする別の仮想ホストリスナーを持っていることです。これは、apexドメイン定義にリダイレクトするワイルドカードリスナーの例です。

upstream projecta {
  server unix:///home/Rails/projecta_production/shared/sockets/puma.sock;
}

# Listener for all subdomains
server {
  listen 80;
  server_name *.mydomein.com;
  # If you want to redirect all requests, not just subdomains, use below config instead.
  # server_name _;
  return 301 http://mydomein.com$request_uri;
}

# Listener for Apex Domain
server {
  listen 80;
  server_name mydomein.com;
  root /home/Rails/projecta_production/public; # I assume your app is located at this location

  location / {
    proxy_pass http://projecta; # match the name of upstream directive which is defined above
    proxy_set_header Host $Host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }

  location ~* ^/assets/ {
    # Per RFC2616 - 1 year maximum expiry
    expires 1y;
    add_header Cache-Control public;

    # Some browsers still send conditional-GET requests if there's a
    # Last-Modified header or an ETag header even if they haven't
    # reached the expiry date sent in the Expires header.
    add_header Last-Modified "";
    add_header ETag "";
    break;
  }
}
1
Brennen Smith