nginxで変更した設定ファイルの更新が反映されません。
元々は/n/をルートにリダイレクトさせるように設定していましたが、コメントアウトし保存しました。
default.conf
1 # location /n/ { 2 # root /usr/share/nginx/html; 3 # index index.html index.htm; 4 # }
以下のコマンドを試しましたが、/n/は相変わらずリダイレクトされてしまいます。
Terminal
1$ nginx -s reload 2$ nginx -s restart 3$ sudo service nginx reload 4$ sudo service nginx restart 5$ sudo systemctl reload nginx.service
その他リダイレクトは以下などです。
default.conf
1 location / { 2 root /usr/share/nginx/html; 3 index index.html index.htm; 4 }
他にどのような方法で解決できますか。
動作環境は以下の通りです。
サーバー:さくらVPS
CentOS Linux release 7.8.2003 (Core)
nginx version: nginx/1.19.2
回答2件
あなたの回答
tips
プレビュー