Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - zajacmp3

Pages: [1]
1
Apache / Re: Default Page Displayed for all domains
« on: December 03, 2014, 02:37:50 PM »
Your default configuration does not handle ipv6 properly.

Code: [Select]
[Wed Dec 03 14:59:56 2014] [error] [client 2001:41d0:a:XXXX::1] File does not exist: /usr/local/apache/htdocs/img, referer: http://blog.xxxxxx.ovh/

while the original vhost configuration looked like:
Code: [Select]
<VirtualHost 37.187.98.XXX:80>
and in this case it should look like:
Code: [Select]
<VirtualHost [client 2001:41d0:a:XXXX::1]:80 37.187.98.XXX:80>
more readable example:
Code: [Select]
<VirtualHost [ipv6]:80 ipv4:80>


Actually as far as I see this your soft does not handle ipv6 at all. Every domain should have ipv4 configuration and ipv6. Please add this as a feature in future releases.

is this even open source?

Pages: [1]