web-dev-qa-db-ja.com

Ubuntu16.04で複数のWebサイトをホストするためのNGINXサーバーブロック構成

Ubuntu 16.04で複数のwordpress Webサイトをホストしたい(Ubuntu-NGINX-MariaDB-PHP)。wordpressマルチサイトを使用したくない。

私は このガイド に従いました。すべて問題ありませんが、ホストできるサイトは1つだけです。複数のサーバーブロック構成を作成すると、エラーが表示され始め、NGINXの起動に失敗します。設定ファイルが正しく取得されていません。これが設定ファイルです:

server {
     listen [::]:80 ipv6only=off;
     server_name abcde.org www.abcde.org;

     root /var/www/abcde;

    # Add index.php to the list if you are using PHP
    index index.php     index.html index.htm index.nginx-debian.html;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        # try_files $uri $uri/ =404;
        try_files $uri $uri/ /index.php?q=$uri&$args;
    }

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

     location ~ \.php$ {
        include snippets/fastcgi-php.conf;
    #
    #   # With php7.0-cgi alone:
        fastcgi_pass 127.0.0.1:9000;
    #   # With php7.0-fpm:
    #   fastcgi_pass unix:/run/php/php7.0-fpm.sock;
     }


     location ~ /\.ht {
        deny all;
     }
}

1つのWebサイトのみをホストしている場合は、正常に機能します。しかし、他のWebサイトをホストするとすぐに、NGINXが起動しません。サーバー名とルートディレクトリを変更した後、両方のサイトに同じ構成を使用します。

NGINXサーバーブロックの適切な構成を教えてください。

1
user58859

Nginx.configには、次のような行が必要です。これは私のサーバーで行うことです

include /etc/nginx/enabled-sites/*;

そのディレクトリには、多数のサーバーを含む1つのファイルを作成することも、私が行っていることを実行してサーバーをドメインごとにグループ化することもできます。

ファイルabcde.conf

server {
  listen 80;
  server_name www.abcde.org;

  root /var/www/home;

  # Any locations you want. PHP example that I use below.
  location ~ \.php$ {
    fastcgi_keep_conn on;
    fastcgi_intercept_errors on;
    fastcgi_pass   php;
    include        fastcgi_params;
    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
  }
} # ends www.abcde.org server

# This server forwards to the www domain
server {
  listen 80;
  server_name abcde.org;
  return 301 https://www.abcde.org$request_uri;
} # ends abcde.org server

ファイルexample.conf

# server for a completely separate domain
server {
  listen 80;
  server_name www.example.com;

  root /var/www/example;

  # Any locations you want
} # ends www.example.com server

ファイルdefault_server.conf

# This just prevents Nginx picking a random default server if it doesn't
# know which server block to send a request to
server {
  listen      80 default_server;
  server_name _;
  # This means "go away", effectively. You can also forward somewhere
  # or put default_server onto any of your server blocks.
  return      444; 
}
6
Tim