0

I have a scenario, where new function apps are being create every week and need to (automatically) proxy them form main function app.

I could not find any way to "just" updated proxies.json without re-deploying entire function app. Any CLI Command / Rest API reference to just update proxies file ?

bugBurger
  • 6,950
  • 9
  • 32
  • 39
  • You can upload the file directly using this url: `https://.scm.azurewebsites.net/dev/wwwroot/proxies.json`. If you want to uatomate that, you could just upload the file using FTP – Thomas May 19 '21 at 01:49
  • HI, any update of this question? Have you check the continuous deployment? – Cindy Pau May 24 '21 at 06:17

1 Answers1

0

what you need to do is to use continuous deployment.

You need to first have some repos like github repo. continuous deployment also called incremental deployment. It is specifically designed for the situation that you mentioned.

Cindy Pau
  • 13,085
  • 1
  • 15
  • 27