New-AzureWebsite
建立新的網站以在 Azure 中執行。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
New-AzureWebsite
[-Location <String>]
[-Hostname <String>]
[-PublishingUsername <String>]
[-Git]
[-GitHub]
[-GitHubCredentials <PSCredential>]
[-GitHubRepository <String>]
[-Name <String>]
[-Slot <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
本主題描述 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 |