你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzureWebsite
创建新网站以在 Azure 中运行。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。
语法
New-AzureWebsite
[-Location <String>]
[-Hostname <String>]
[-PublishingUsername <String>]
[-Git]
[-GitHub]
[-GitHubCredentials <PSCredential>]
[-GitHubRepository <String>]
[-Name <String>]
[-Slot <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
说明
本主题介绍 Microsoft Azure PowerShell 模块的 0.8.10 版本中的 cmdlet。
若要获取正在使用的模块版本,请在 Azure PowerShell 控制台中键入 (Get-Module -Name Azure).Version
。
该 cmdlet 创建一个新网站,用于在 Azure 中运行,并准备通过 GitHub 进行部署。
示例
示例 1:使用 Git 创建新网站
PS C:\> New-AzureWebsite mySite -Git
此示例在 Azure 中创建一个新网站和一个用于将文件部署到新网站的本地 Git 存储库。
示例 2:创建与 GitHub 集成的网站
PS C:\> New-AzureWebsite mysite -GitHub -GitHubRepository myaccount/myrepo
此示例创建链接到名为 myaccount/myrepo 的 GitHub 存储库的新网站。 提交到 GitHub 存储库会推送到 Azure 中的网站。
参数
-Git
设置本地 Git 存储库并将其链接到网站。 如果指定,此参数在本地目录中设置 Git 存储库,并添加一个名为“azure”的远程存储库,该远程存储库链接到 Azure 中的网站。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-GitHub
指示此 cmdlet 将新网站链接到现有的 GitHub 存储库。 提交到 Giuthub 存储库会推送到 Azure 中的网站。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-GitHubCredentials
指定要连接到 GitHub 的用户名和密码凭据。
类型: | PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-GitHubRepository
指定要链接到此网站的 GitHub 存储库的完整名称。
例如,myaccount/myrepo
。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Hostname
指定新网站的替代主机名。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Location
指定要在其中部署网站的数据中心的位置。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
指定网站的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Profile
指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。
类型: | AzureSMProfile |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PublishingUsername
指定在 Azure 门户中为 Git 部署指定的用户名。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Slot
指定网站的槽名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |