Apache再起動でエラーになる原因

Apacheでバーチャルホストの設定をするために設定ファイルをいじっていたらいつのまにかエラーになっていました

 Active: failed (Result: exit-code)

  systemd[1]: Starting The Apache HTTP Server...
  httpd[12732]: AH00526: Syntax error on line 119...:
  httpd[12732]: DocumentRoot '/var/www/html' is n...e
  systemd[1]: httpd.service: main process exited,...E
  kill[12733]: kill: cannot find process ""
  systemd[1]: httpd.service: control process exit...1
  systemd[1]: Failed to start The Apache HTTP Server.

切れているけどおそらくドキュメントルートかな、、?
設定ファイルを確認

/etc/httpd/conf/httpd.conf

DocumentRoot "/var/www/html"

/etc/httpd/conf.d/vhost.conf

<VirtualHost *:80>
ServerName hogehoge12345.com
DocumentRoot /var/www/hogehoge12345.com
</VirtualHost>

ドキュメントルートが初期状態のままになっており,自分で設定したバーチャルホストの設定ファイルと違っているのが原因

/etc/httpd/conf/httpd.conf

DocumentRoot "/var/www"

にしたらエラーは消えました。