Nginxの制御コマンド

その他
Nginxではsystemctlを使用して制御を行うことが可能です。 以下が、それぞれのコマンドです
  • 起動
    • sudo systemctl start nginx
  • 停止
    • sudo systemctl stop nginx
  • 状態確認
    • sudo systemctl status nginx
  • 再起動
    • sudo systemctl reload nginx
  • コンフィルファイル確認
    • sudo nginx -t

コメント