When I try to deploy my Django project on Google App Engine with command:
gcloud app deploy
then i got network connectivity error every time. Error massage is:
ERROR: (gcloud.app.deploy) EOF occurred in violation of protocol (_ssl.c:661)
This may be due to network connectivity issues. Please check your network settings, and the status of the service you are trying to reach.
I try google but not solve it. Please anyone help me.
My app.yaml file is:
runtime: python37
entrypoint: gunicorn -b :8080 scanner_api.wsgi
handlers:
# This configures Google App Engine to serve the files in the app's static
# directory.
- url: /static
static_dir: static
# This handler routes all requests not caught above to your main app. It is
# required when static routes are defined, but can be omitted (along with
# the entire handlers section) when there are no static files defined.
- url: /.*
script: auto