这是我第一次使用基于Arch
的{{1}}环境(Manjaro Linux)以及Linux
。
我安装了Nginx,打开了Nginx
并显示了标准的http://localhost
页面。
然后我创建了2个文件夹:
在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