Google App引擎灵活部署

时间:2018-06-13 17:30:23

标签: python django google-app-engine-python

我正在尝试在App Engine Flexible中部署Django应用程序。部署之后,/ _ah / health将始终返回499状态代码(客户端已在服务器应答请求之前关闭了连接)。 如果我使用App Engine Standard部署应用程序,则可以访问服务器并且工作正常。

有人有这个问题吗? 到底究竟是什么原因?对于我所理解的,似乎服务器无法正常工作并删除/ _ah / health /

所做的连接

这是我的app.yaml deploy config:

runtime: python
env: flex
service: <service_name>
entrypoint: gunicorn -b :$PORT <app>.wsgi

builtins:
 - deferred: on

manual_scaling:
  instances: 1

beta_settings:
  cloud_sql_instances: <project_id>:<zone>:<db_name>

env_variables:
  DEBUG: True
  DB_NAME: ****
  DB_USER: ****
  DB_PASS: ****
  CLOUD_PROXY: /cloudsql/<project_id>:<zone>:<db_name>
  STATIC_URL: https://storage.googleapis.com/<bucket_name>/static/
  DJANGO_SECRET_KEY: **********************************************

0 个答案:

没有答案