Use SSL with Dart and managed virtual machines

I want to know how I can use a secure connection (https) with Dart and a managed VM on the local host and when deploying it.

Thank.

+4
source share
1 answer

When an application is deployed using gcloud preview app deploy, the default App Engine application is HTTP and HTTPS. If you have an app on

http://project.appspot.com

you can access it using https on

https://project.appspot.com

If you are not accessing the default version, the URL is:

http://version.project.appspot.com

and https on

https://version-dot-project.appspot.com

. -dot -.

int app.yaml, HTTPS:

- url: /.*
  script: dummy
  secure: always

HTTP HTTPS, , , . -dot- .

gcloud preview app run HTTPS. App Engine:

- HTTPS-. , , HTTPS, HTTP- - .

https://github.com/dart-lang/appengine/issues/16 https://cloud.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_Secure_URLs.

+3

All Articles