1. ホーム
  2. nginx

[解決済み] nginxです。[emerg] "server" ディレクティブはここでは許可されません。

2022-04-27 13:38:30

質問

nginx を設定し直したのですが、以下の設定で再起動できません。

コンフィグ

server {
   listen 80;
   server_name www.example.com;
   return 301 $scheme://example.com$request_uri;
}


server {
   listen 80;
   server_name example.com;

   access_log /var/log/nginx/access.log;
   error_log  /var/log/nginx/error.log;

   location /robots.txt {
       alias /path/to/robots.txt;
       access_log off;
       log_not_found off;
   }

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

   location / {
      proxy_pass_header Server;
      proxy_set_header Host $http_host;
      proxy_redirect off;
          proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Scheme $scheme;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_connect_timeout 30;
      proxy_read_timeout 30;
      proxy_pass http://127.0.0.1:8000;
   }

   location /static {
      expires 1M;
      alias  /path/to/staticfiles;
   }
}

実行後 sudo nginx -c conf -t を実行すると、次のようなエラーが返されます。

nginx: [emerg] "server" directive is not allowed here in    /etc/nginx/sites-available/config:1
nginx: configuration file /etc/nginx/sites-available/config test failed

解決方法は?

それは nginx の設定ファイルです。それは 部分 nginx の設定ファイルです。

nginx 設定ファイル(通常 nginx.conf )は次のようになります。

events {
    ...
}
http {
    ...
    server {
        ...
    }
}

server ブロックは http ブロックを作成します。

多くの場合、設定は複数のファイルに分散されます。 include ディレクティブで追加のフラグメントを引っ張ってくることができます (たとえば sites-enabled ディレクトリ)を作成します。

使用方法 sudo nginx -t で始まる設定ファイル全体をテストします。 nginx.conf を使い、追加のフラグメントを引っ張ってきます。 include ディレクティブを使用します。参照 本書 をご覧ください。