3
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?

More than 3 years have passed since last update.

【Nginx】invalid number of arguments in "root" directive in /etc/nginx/conf.d/default.conf:の対処法

Posted at

Nginxにアクセス出来ない事案が発生し、ログを追ってみるとdocker-compose up直後に以下のエラーが出ていることに気が付きました。

invalid number of arguments in "root" directive in /etc/nginx/conf.d/default.conf:8

default.confの8行目がおかしいということは文面から読み取れます。

原因は文法エラー

nginx.conf
server {
  listen 80;
  server_name localhost;

  root /var/www/html;
  index index.php index.html

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

  location / {
    try_files $uri $uri/ /index.php$is_args$args;
  }

  location ~ \.php$ {
    fastcgi_pass php:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
  }
}

6行目のindex index.php index.html末尾のセミコロンが抜けてた事が原因でした。

3
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
3
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?