System Grab Bag

View all TLDR pages from common (or from all pages)

az webapp

Manage Web Applications hosted in Azure Cloud Services. Part of azure-cli. Mode information: https://learn.microsoft.com/cli/azure/webapp.
  • List available runtimes for a web application:
    az webapp list-runtimes --os-type {{windows|linux}}
  • Create a web application:
    az webapp up --name {{name}} --location {{location}} --runtime {{runtime}}
  • List all web applications:
    az webapp list
  • Delete a specific web application:
    az webapp delete --name {{name}} --resource-group {{resource_group}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.