apache 실행시 messages 로그에 아래와 같은 로그가 나타남
NameVirtualHost has no effect and will be removed in the next release /etc/httpd/conf.d/vhost.conf:18
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@servis.co.kr
DocumentRoot /home/www/
ServerName dummy-host.example.com
ServerAlias www.dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
위 설정방법은 apache2.4 이하 버전에서의 설정방법이며
apache2.4 이상 버전에서 위와 같이 설정시 로그가 나옴
NameVirtualHost has no effect and will be removed in the next release
NameVirtualHost *:80 이 필요하지 않으며 다음 릴리즈에서 삭제될 예정이라는 경고문
즉 apache 2.4 버전부터는 NameVirtualHost 설정부분이 필요하지 않음