Mam działający serwer apache, którego domyślnym katalogiem jest ,,var/www'', a w nim dwa katalogi. Chciałem dla każdego katalogu przypisać inną domenę, więc zrobiłem tak jak jest opisane w tym temacie: http://debian.linux.pl/threads/18202-Ap ... iele-domen
Wszystko działa tak jak trzeba, lecz apache wypisuje ostrzeżenie:
Kod: Zaznacz cały
root@debian:/home/koxu# /etc/init.d/apache2 restartRestarting web server: apache2apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Sun Oct 21 13:27:59 2012] [warn] VirtualHost 99.99.99.99:80 overlaps with VirtualHost aaa.pl:80, the first has precedence, perhaps you need a NameVirtualHost directive
... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Sun Oct 21 13:28:00 2012] [warn] VirtualHost 99.99.99.99:80 overlaps with VirtualHost aaa.pl:80, the first has precedence, perhaps you need a NameVirtualHost directive
Dodatkowo chciałbym żeby domyślnie wszystkie inne katalogi w ,,var/www'' otrzymywały jakiś domyślny adres, który ustalę.
Pliki konfiguracyjne:
ports.conf
Kod: Zaznacz cały
#NameVirtualHost *:80
Listen 80
sites-available/default
Kod: Zaznacz cały
NameVirtualHost 192.168.0.10:80<VirtualHost 99.99.99.99:80>
ServerAdmin webmaster@localhost
ServerName 99.99.99.99:80
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
sites-enabled/000-default
Kod: Zaznacz cały
NameVirtualHost 192.168.0.10:80<VirtualHost 99.99.99.99:80>
ServerAdmin webmaster@localhost
ServerName 99.99.99.99:80
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
sites-enabled/aaa
Kod: Zaznacz cały
<VirtualHost aaa.pl:80>ServerName aaa.pl
ServerAlias www.aaa.pl
DocumentRoot /var/www/aaa/
</VirtualHost>
Kod: Zaznacz cały
<VirtualHost bbb.pl:80>
ServerName bbb.pl
ServerAlias www.bbb.pl
DocumentRoot /var/www/bbb/
</VirtualHost>
Mam nadzieję, że zbytnio nie namieszałem.
Z góry dziękuję za pomoc.