ArchLinux + nginx + Passenger Rails应用程序始终指向localhost

时间:2014-07-07 12:09:42

标签: nginx passenger archlinux

这是我第一次使用基于Arch的{​​{1}}环境(Manjaro Linux)以及Linux

我安装了Nginx,打开了Nginx并显示了标准的http://localhost页面。

然后我创建了2个文件夹:

  • 的/ etc / nginx的/位点可用的
  • 等/ nginx的/启用的站点 -

Welcome to Nginx中,我创建了一个名为sites-available的配置文件,其中包含以下数据:

iima

然后创建了一个符号链接:

server {
  listen 80;
  server_name iima.merged.localhost;
  passenger_enabled on;
  location / {
    root /home/path/redacted/public;
  }
}

然后在sudo ln -s /etc/nginx/sites-available/iima /etc/nginx/sites-enabled/iima 中,我添加了:

/opt/nginx/conf/nginx.conf

include /etc/nginx/sites-enabled/*; 中,我在文件末尾添加了以下行:

/etc/hosts

使用127.0.0.1 iima.merged.localhost iima.merged.localhost # I also tried below line while removing above line 127.0.0.1 iima.merged.localhost 重新启动了nginx服务器(也尝试使用sudo systemctl restart nginx),但输入reload始终指向localhost页面。

我错过了什么吗? iima.merged.localhost中未创建error(s).log

编辑:

/var/log/nginx

的内容
/opt/nginx/conf/nginx.conf

0 个答案:

没有答案