Create Azure App Services- Web Apps

Gupta Rashmi
2 min readJan 25, 2024

Create a Web application on Azure by using the PaaS Model.

After creating the app service plan we will create the app service on top of the platform.

>Build two web App applications -

1. Application that provides an API with a rest interface with no user interface named Image API. This API is intended to run in the background and access Image files stored in the Storage Account container. Account Key is required for storage Access. This key needs to be set in the App service environment variable. Since it has no user interface you can verify from a browser that it returns simple JSON strings.

2. Application that has a web user Interface named Imageweb. The end user will access this from the browser. If you check from the browser you should be able to check that the images stored in the container are displayed on the web UI. Furthermore, if the image is uploaded to the web UI the image is stored to the backend of the Image API.

--

--