如何解决NGINX 502坏网路错误
我已经将extal.js Web应用程序进行了容器,并在AWS EC-2中托管。使用nginx作为代理服务器,
这是唯一的工作页面
/
不适用于任何其他页面(路径),它会抛出 502 Bad Gate-way
ex:
/etc
/slug/page
这是nginx cofiguration
server {
listen 80 default_server;
location / {
proxy_pass http://localhost:300;
}
}
如何将所有路径转发到特定端口?
I've containerized the next.js web application and hosted in aws ec-2. using nginx as proxy server
this is the only working page
/
not working for any other pages (paths),it throws 502 bad-gate-way
EX:
/etc
/slug/page
this is the nginx cofiguration
server {
listen 80 default_server;
location / {
proxy_pass http://localhost:300;
}
}
how can I Forward all paths to a specific port?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我添加了此Nginx配置,现在正常工作。
I've add this nginx configuration, now it's working fine.