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