Что то я вообще запутался.
ServerName указывал и sams и 192.168.1.1/sams и 127.0.0.1 sams ошибка 404
/etc/hosts правил добавлял 127.0.0.1 sams и 192.168.1.1 sams.
Каждый раз правя конфиг делал service apache2 restart.
В итоге если зайти на 192.168.1.1 выводится страница apache. если сделать
curl -sH "Host: sams" http://127.0.0.1/ или curl -sH "Host: test" http://127.0.0.1/ или curl -s http://127.0.0.1/
то выходит стартовая страница apache.
sams.conf
<VirtualHost *:80>
ServerName 192.168.1.1/sams
ServerAdmin webmaster@localhost
DocumentRoot /usr/share/sams2
<Directory /usr/share/sams2/>
Options Indexes FollowSymLinks MultiViews
Require all granted
AllowOverride All
</Directory>
</VirtualHost>
test.conf
<VirtualHost *:80>
ServerName 192.168.1.1/test
ServerAdmin webmaster@localhost
DocumentRoot /home/riff/test/
<Directory /home/riff/test/>
Options Indexes FollowSymLinks MultiViews
Require all granted
AllowOverride All
</Directory>
</VirtualHost>
000-default.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
sudo ls -la /etc/apache2/sites-available/
итого 28
drwxr-xr-x 2 root root 4096 марта 27 10:48 .
drwxr-xr-x 8 root root 4096 марта 23 14:14 ..
-rw-r--r-- 1 root root 1664 марта 27 11:17 000-default.conf
-rw-r--r-- 1 root root 6437 янв. 7 2014 default-ssl.conf
-rw-r--r-- 1 root root 258 апр. 2 15:14 sams.conf
-rw-r--r-- 1 root root 330 марта 28 08:07 test.conf
sudo ls -la /etc/apache2/sites-enabled/
итого 8
drwxr-xr-x 2 root root 4096 марта 27 11:03 .
drwxr-xr-x 8 root root 4096 марта 23 14:14 ..
lrwxrwxrwx 1 root root 35 марта 23 14:14 000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 28 марта 27 11:03 sams.conf -> ../sites-available/sams.conf
lrwxrwxrwx 1 root root 28 марта 27 11:03 test.conf -> ../sites-available/test.conf
sudo apache2ctl -S
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
VirtualHost configuration:
*:80 is a NameVirtualHost
default server 127.0.1.1 (/etc/apache2/sites-enabled/000-default.conf:12)
port 80 namevhost 127.0.1.1 (/etc/apache2/sites-enabled/000-default.conf:12)
port 80 namevhost 192.168.1.1/sams (/etc/apache2/sites-enabled/sams.conf:1)
port 80 namevhost 192.168.1.1/test (/etc/apache2/sites-enabled/test.conf:1)
ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/lock/apache2" mechanism=fcntl
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33
Group: name="www-data" id=33
Как я понимаю если судить по последней команде apache слушает порт 80 на котором висят sams и test.
Или я что то не понимаю? Как правильно организовать доступ к серверу, что бы на нем висело несколько сайтов(sams, test и т.д.)?