我正在使用localhost和Windows操作系统。 NGINX在端口80上运行,Node.js应用程序(Ghost)在端口2368上运行。
我想将NGINX用作Ghost应用的前端Web服务器。所以我在nginx.conf
文件中写道:
server {
listen 80;
server_name localghost;
# change above to example.com in production mode
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
}
}
NGINX目录为C:\nginx
,Ghost目录为C:\nginx\www\ghost
。
http://localghost
地址未打开Ghost应用。我怎么能这样做?
答案 0 :(得分:1)
localghost会解决任何问题吗?
如果您正在开发机器上进行测试,那么我建议您只使用localhost并完成它。