add vhost test cases containing IPv6 addresses

The two added vhost configuration files should test, whether a reversed
order, i.e. first an IPv6 entry followed by an IPv4 one, or an IPv6
adress without a given port works correctly.
This commit is contained in:
Sebastian Bögl
2016-02-15 23:13:28 +01:00
parent d48c560df1
commit b5bd330bd9
4 changed files with 18 additions and 0 deletions
@@ -0,0 +1,9 @@
<VirtualHost [2607:f0d0:1005:99::3:1337]:80 173.192.30.7:80>
DocumentRoot /xxxx/
ServerName noodles.net.nz
ServerAlias www.noodles.net.nz
CustomLog ${APACHE_LOG_DIR}/domlogs/noodles.log combined
<Directory "/xxxx/">
AllowOverride All
</Directory>
</VirtualHost>
@@ -0,0 +1,9 @@
<VirtualHost [2607:f0d0:1005:99::3:1337] 173.192.30.7:80>
DocumentRoot /xxxx/
ServerName noodles.net.nz
ServerAlias www.noodles.net.nz
CustomLog ${APACHE_LOG_DIR}/domlogs/noodles.log combined
<Directory "/xxxx/">
AllowOverride All
</Directory>
</VirtualHost>