通过NGINX(localhost)在端口80上运行Ghost

时间:2015-11-07 10:36:27

标签: node.js windows nginx ghost

我正在使用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应用。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

localghost会解决任何问题吗?

如果您正在开发机器上进行测试,那么我建议您只使用localhost并完成它。