Home > Back-end >  how to deploy multiple .net core application in single linux based azure app service
how to deploy multiple .net core application in single linux based azure app service

Time:08-26

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

CodePudding user response:

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.

  • Related