After upgraded our linode plan, one of our websites' output seems to direct to mysqltuner.pl output. You can see the errors by checking the website.
http://broadfeet.com/I checked the .conf file and the DocumentRoot field seems correct to me. So does anyone know what's wrong and how to possible fix it? Thanks.
<VirtualHost broadfeet.com:80>
# Admin email, Server Name (domain name), and any aliases
ServerAdmin
info@broadfeet.com ServerName broadfeet.com
ServerAlias
http://www.broadfeet.com # Index file and Document Root (where the public files are located)
DirectoryIndex index.html index.php
DocumentRoot /var/www
# Log file locations
LogLevel warn
ErrorLog /var/www/log/error.log
CustomLog /var/www/log/access.log combined
<Directory /var/www>
# Options Indexes FollowSymLinks
# AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
</Directory>
<Directory />
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from localhost
</Directory>
</VirtualHost>