XUbuntu 13.10. Стоит lamp + Webmin. Создаешь вебмином виртуальные хосты, пишешь их в файле hosts.
127.0.0.1 localhost phpmyadmin hostx 127.0.1.1 anton-MS-7392
# The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters
А в браузере когда набираешь phpmyadmin или hostx попадаешь на дефолтный локалхост, а не на то, что лежит в папке. /etc/apache2/sites-available/phpmyadmin.conf
<VirtualHost *> DocumentRoot «/home/anton/vhosts/phpmyadmin» ServerName phpmyadmin <Directory «/home/anton/vhosts/phpmyadmin»> allow from all Options +Indexes </Directory> </VirtualHost>
/etc/apache2/sites-available/hostx.conf
<VirtualHost *> DocumentRoot «/home/anton/vhosts/host1» ServerName hostx <Directory «/home/anton/vhosts/host1»> allow from all Options +Indexes </Directory> </VirtualHost>
При рестарте апача выдает
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message