I've got my regular wamp installation, and everything has been working fine with other vhosts, until I tried to make a vhost for DooPHP framework and I got an ssl_error_rx_record_too_long error on Firefox. It loads up fine in Chrome. I'm not using any SSL certs. My vhost configuration is just like all the rest of them:
<VirtualHost *:80>
ServerAdmin arturas@duomenucentras.lt
DocumentRoot "C:/wamp/www/doophp/"
ServerName doophp
ServerAlias doo
ErrorLog "logs/doo-error.log"
CustomLog "logs/doo-access.log" combined
<Directory "C:/wamp/www/doophp/">
Options Indexes FollowSymLinks Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Any ideas?
Edit:
Ok, now it stopped saying ssl_error_rx_record_too_long and just says "Firefox can't establish a connection to the server at doo.". It loads up and works in Chrome, IE, Safari, Opera. Just not Firefox. What is up with that?