How can I keep my Azure WebJob running without “Always On”

后端 未结 2 1341
你的背包
你的背包 2020-12-08 23:44

I have a continous webjob associated with a website and I am running that website on the Shared mode. I don\'t want to go to Always On opti

2条回答
  •  [愿得一人]
    2020-12-09 00:09

    If you want the WebJob to not stop you need to make sure your scm site is alive.

    So the keep-alive requests should go to https://sitename.scm.azurewebsites.net and these requests need to be authenticated (basic auth using your deployment credentials).

提交回复
热议问题