Appengine - Local dev server with https

前端 未结 3 566
太阳男子
太阳男子 2021-01-05 09:30

Goal: Reduce dev - feedback cycle by using App Engine dev server. For my use this must be available as a public HTTPS address. App Engine dev server only supports HTTP.

3条回答
  •  一生所求
    2021-01-05 09:50

    ngrok supports https urls to any http port, so you can just use ngrok to proxy an https domain to the GAE dev server port

    If you have a paid for account, you can setup CNAMEs to use your own domains

    ngrok http -hostname=dev.example.com 8080
    

提交回复
热议问题