PHP Azure CLI用于在任何 shell 中运行命令以创建和配置 Azure 资源。 1 - 获取示例存储库 Azure CLI Portal 可在Cloud Shell 中使用Azure CLI创建 Web 应用,并使用 Git 将 PHP 代码示例部署到该 Web 应用。 在终端窗口中运行以下命令,以将示例应用程序克隆到本地计算机,并导航到项目根目录。
原文链接:https://docs.azure.cn/zh-cn/app-service/app-service-web-get-started-php
php -S localhost:8080 在Web 浏览器中浏览到示例应用程序,地址为 http://localhost:8080。 在终端窗口中,按 Ctrl+C 退出Web 服务器。 2 - 将应用程序代码部署到 Azure Azure CLI Portal Azure CLI 的 az webapp up 命令会在单个步骤中创建必需的资源并部署应用程序。 在终端中,使用 az webapp up 命令...
An app service always runs in anApp Service plan. In addition,Azure Functionsalso has the option of running in anApp Service plan. An App Service plan defines a set of compute resources for a web app to run. When you create an App Service plan in a certain region (for example, West ...
這可能會因為與定價層、區域、作業系統、可用性區域、現有函數應用程式或現有 Web 應用程式不相容而發生。 如果發生上述其中一個錯誤,請在新資源群組中建立 App Service 方案。 您也可以將應用程式移到另一個 App Service 方案,只要來源方案和目標方案位於相同的資源群組和地理區域,並皆為同樣的作業系統類型即可。
An app service always runs in anApp Service plan. In addition,Azure Functionsalso has the option of running in anApp Service plan. An App Service plan defines a set of compute resources for a web app to run. When you create an App Service plan in a certain region (for example, West ...
az webapp create \ --name MY_WEBAPP_NAME \ --plan MY_APP_SERVICE_PLAN \ --resource-group MY_RESOURCE_GROUP \ --runtime "php|7.4" 在上面的命令中,将参数替换为你自己的值,其中 MY_WEBAPP_NAME 是Web 应用的新名称。 配置Azure 发布配置文件并创建 AZURE_WEBAPP_PUBLISH_PROFI...
Azure App Service は、非常にスケーラブルな、自己適用型の Web ホスティング サービスを提供します。 このクイックスタートでは、Azure App Service on Linux に PHP アプリをデプロイする方法について説明します。 以下の手順は、Mac、Windows、または Linux コンピューターを使って実行でき...
创建一个Azure App Service计划: az appservice plan create –name myAppServicePlan –resource-group myResourceGroup –sku FREE 使用Bash或Powershell创建空的Web应用程序。使用Bash:az webapp create –resource-group myResourceGroup –plan myAppServicePlan –name –runtime “PHP|7.4″ –deployment-local-gi...
下面我们通过一个简单PHP 网站案例介绍,该特性。首先创建一个Web App应用。在New->Web + Mobile->Web App (preview) 初次创建Web App的过程中,需要用户新建Resource Group(资源组)和App Service Plan(应用服务计划) 创建完成之后,我们点击左侧导航栏App Services ...