0

I want to deploy multiple .net core API application in single linux based azure app service. I can't find any documentation for that. Can any one give any suggestion or idea how to achieve that.

I have thing one option but don't know is it possible or not? Can I mount azure blob storage space in configuration/ Path mapping in app service and run application from their? is it possible or any other proper way. Please suggest.

Thank you

Vinit Patel
  • 2,408
  • 5
  • 28
  • 53
  • Yes, It is possible to deploy multiple Applications to single Ap service. You need to add the Virtual Paths in Portal => Configuration section. – Harshitha Aug 25 '22 at 12:22

1 Answers1

0

It doesn't seem possible.

You can refer to the answer in the post below.

Hosting Two Website Under one Web App - Azure Services

IIS can handler mappings and virtual applications and directories, you can't use virtual applications and directories in linux.

If you have more questions about azure web app, you can raise a support ticket on portal. You can also put forward your ideas and suggestions in the feedback, and optimize the product together with Microsoft official.

Hope this can help you.

Chen
  • 4,499
  • 1
  • 2
  • 9
  • I solved this using creating multiple App services under same service plan, so there is no additional cost and I can achieve what I need. than you for your answer – Vinit Patel Aug 26 '22 at 07:08