我已经在 nginx 上部署了 nodebb 应用程序,并尝试与我的站点结合使用。
我的网站是http://example.com。我成功地在http://example.com:4567或http://example.com(端口号已删除)上显示节点应用程序。
但是,我想用http://example.com/nodebb之类的网址向他们展示。
我试过像下面的代码。
配置文件
{
"url": "http://example.com/nodebb",
"secret": "secret",
"database": "mongo",
"port": 4567,
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "nodebb",
"password": "pass",
"database": "nodebb"
}
}
nginx.conf
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1/nodebb:4567;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
但是,它返回“未找到”。我不知道如何制作新的 slug 并将节点应用程序放入其中。任何帮助表示赞赏。