我在ubuntu14.04服务器上设置了nginx和乘客,rails网站工作并且可以通过ip地址访问但是我还为服务器添加了一个静态站点但是当我进入站点时它从未显示地址它只显示rails网站,我不知道为什么这是.... 以下是我在每个网站启用的网站中的配置文件
我的rails网站
server {
listen 80;
listen [::]:80;
server_name http://xx.x.x.x.x;
passenger_enabled on;
rails_env production;
root /home/deploy/railssite/current/public;
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
我的静态网站;
server {
listen 80 default_server;
listen [::]:80;
server_name www.xxxxx.net xxxxx.net;
root /home/deploy/staticsite/current;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 365d;
}
# 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;
include fastcgi_params;
}
}
谁能看到这里有什么问题? 我重新启动了nginx服务器,但仍然只看到rails网站。
rails网站正在使用vps的IP地址,而静态网站正在使用域名。