Problem with Firefox
bhkien
nginx-forum at nginx.us
Sun Sep 5 00:49:13 MSD 2010
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
More information about the nginx
mailing list