0

我正在使用本地主机和 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 应用程序。我怎样才能做到这一点?

4

1 回答 1

1

localhost 可以解决任何问题吗?

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

于 2015-11-07T10:40:04.880 回答