Hoe host ik met azure een website?

Skander Oueslati 1 Reputation point
2021-01-04T09:21:37.427+00:00

Hallo,
Ik heb een studenten account van Azure, en wil graag een simpele kleine website hosten.

Kan iemand me helpen hoe ik dat kan doen?

English Version:

How do I use Azure to host a website?

Hello, I have an Azure student account and would like to host a simple little website. Can someone help me do that?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,346 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Andreas Baumgarten 118.1K Reputation points MVP
    2021-01-04T09:47:58.6+00:00

    Maybe using the Azure App Service is an option for your requirement:

    https://learn.microsoft.com/en-us/azure/app-service/

    ----------

    (If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)

    Regards
    Andreas Baumgarten


  2. Ryan Hill 29,676 Reputation points Microsoft Employee
    2021-01-06T19:45:33.01+00:00

    Hi @Skander Oueslati , you didn't specify which language you're targeting, but with .NET Core, using Visual Studio Code all you need to do is open the folder that contains your project.

    dotnet new web -o demoapp  
      
    code demoapp  
    

    The same applies for nodejs, php, or python. You don't necessarily need to use Visual Studio or Visual Studio Code. You can use any editor you choose. With Visual Studio IDEs, there are extensions and features that make it easier to deploy your web app to Azure, as @Andreas Baumgarten pointed out earlier. You can also leverage the Azure CLI to create your web app and deploy through various methods e.g. zip, FTP, continuous, etc.

    If you run into any issues with deploying your web app, please feel free to comment below. It will also be helpful to know which language you're using.

    Regards,
    Ryan


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.