1

我在 .yaml 文件上尝试使用PyPCloud 有这个配置

runtime: python37
service: dev-pypyserver
instance_class: F4

handlers:
- url: /.*
  secure: always
  script: auto
  
default_expiration: "3s"



entrypoint: pserve server.ini

但日志说:“启动后未能检测到应用程序:ForAppStart()”

4

1 回答 1

2

来自https://cloud.google.com/appengine/docs/standard/python3/runtime

入口点应该启动一个 Web 服务器,该服务器侦听由PORT环境变量指定的端口。

默认情况下,pypicloud使用6543的端口可能与运行时要求您使用的端口不同。

于 2021-01-05T21:33:01.527 回答