
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
末尾のセミコロンが抜けてた事が原因でした。