我已经在 Google App Engine 上使用 Django Rest Framework 后端部署了我的 Angular 前端。当我从前端向后端发出请求时,我收到错误 502 Bad Gateway 任何有关识别问题的帮助将不胜感激。我尝试了几个在线建议对我不起作用。这是我的前端 app.yaml
runtime: nodejs12
handlers:
- url: /
static_files: smis/index.html
upload: smis/index.html
secure: always
- url: /
static_dir: smis
secure: always
这是我的后端 app.yaml 文件
runtime: python38
service: backend
handlers:
- url: /static
static_dir: /static/
secure: always
- url: /.*
script: auto
secure: always
这是我的 dispatch.yaml 文件
#routing rules
dispatch:
#api
- url: "*/api/*"
service: backend