Apache: [warn] _default_ VirtualHost overlap on port 80
Posted on August 24, 2015 • 1 minutes • 54 words • Suggest Changes
Apache: [warn] _default_ VirtualHost overlap on port 80
This happens when you have 2 or more <VirtualHost *:80>
and did not set NameVirtualHost *:80
This one liner will fix it :
echo "NameVirtualHost *:80" >> /etc/httpd/conf/httpd.conf
Every time I set up a server I forget about this behavior so its mostly for myself. 🙂