nginx 配置出错
来源:1-8 配置 Nginx 端口代理与域名指向
何呵呵呵
2017-07-16
重启的 nginx 服务 的时候就出现这样的问题,导致服务不能启动
sudo: unable to resolve host iZ8vb19op20ox1ps3am94dZ
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
写回答
4回答
-
Scott
2017-07-26
按照之前贴的链接里面的解决方式呢,到 /etc/hosts 里面,把机器的名字和 localhost 都加进去呢?
127.0.0.1 localhost.localdomain localhost
127.0.1.1 my-machine022017-07-29 -
Scott
2017-07-26
如果不能访问,应该还是 nginx 没有成功开启,或者 node.js 服务没有成功启动,另外检查下防火墙的端口是不是也是通畅的
012017-07-26 -
Scott
2017-07-17
032017-07-24 -
何呵呵呵
提问者
2017-07-16
之前应该是 配置文件写错了,现在没有报错了;但是 访问我的域名访问不到这个 页面啊,
我是 A 记录到 阿里云主机的 公网 IP,
这下边是 nginx 配置文件:ice-githe-cn-3001.confupstream ice{ server 127.0.0.1:3001; } server { listen 80; server_name ice.githe.cn; location /{ proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forward-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Nginx-Proxy true; proxy_pass http://ice; proxy_redirect off; } }
072017-07-29
相似问题