Problem with Firefox

Hi,

I install NginX 0.8.50 on my server.

It works OK with Internet Explorer, Chrome but on FireFox the website
does not work without www.

My virtual host config below


server {
  listen    80;
  server_name  mydomain.com;
  rewrite ^/(.*) http://www.mydomain.com/$1 permanent;
  }

server {
  listen    80;
  server_name  www.mydomain.com;
  access_log
/var/www/vhosts/mydomain.com/statistics/logs/mydomain.access.log;
  error_log
/var/www/vhosts/mydomain.com/statistics/logs/mydomain.error.log;
  location / {
    root   /var/www/vhosts/mydomain.com/httpdocs;
    index  index.html index.htm index.php;
  }

  location ~ \.php$ {
      include /etc/nginx/fastcgi_params;
      fastcgi_pass  127.0.0.1:9000;
      fastcgi_index index.php;
      fastcgi_param  SCRIPT_FILENAME
/var/www/vhosts/mydomain.com/httpdocs$fastcgi_script_name;
  }

Can you please help me to solve this problem.

Thanks in advance,

Posted at Nginx Forum: