Problem with Firefox
khatfield at serverorigin.com
khatfield at serverorigin.com
Sun Sep 5 02:20:55 MSD 2010
Change it to:
server_name mydomain.com www.mydomain.com;
-Kevin
------Original Message------
From: bhkien
To: nginx at nginx.org
ReplyTo: nginx at nginx.org
Subject: Problem with Firefox
Sent: Sep 4, 2010 3:49 PM
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
[code]
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;
}
[/code]
Can you please help me to solve this problem.
Thanks in advance,
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,127145,127145#msg-127145
_______________________________________________
nginx mailing list
nginx at nginx.org
http://nginx.org/mailman/listinfo/nginx
More information about the nginx
mailing list