使用Nginx,我为一个服务器创建了一个多域设置,该服务器由四个单独的站点组成.当我启动Nginx时,我收到一条错误消息,并且网站似乎混淆了,因为输入一个网址会导致其他网站之一.
Restarting Nginx: Nginx: [warn] conflicting server name "localhost" on 0.0.0.0:80,ignored
Nginx: [warn] conflicting server name "localhost" on 0.0.0.0:80,ignored
Nginx.
我已经在/ sites-available下的各自文件中以类似的方式设置了所有四个域 –
server {
listen 80;
root /var/www/example.com/public_html;
index index.PHP index.html index.htm;
server_name example.com www.example.com;
location / {
try_files $uri $uri/ /index.html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.PHP${
try_files $uri =404;
fastcgi_pass unix:/var/run/PHP5-fpm.sock;
fastcgi_index index.PHP;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
我已经检查过,并且/ sites-enabled中没有默认文件.猜测Nginx主配置中可能存在错误设置但不确定要查找的内容.
最佳答案
原文链接:https://www.f2er.com/nginx/434714.html