[Azure]如何部屬您的PHP網頁到Azure

[Azure]如何部屬您的PHP網頁到Azure上

前言

 

一般我們常看到的是利用Azure建立網站並執行,那今天我有現有PHP的網站該如何部屬上去呢?

 

實作

 

1. 在Azure網站上自訂建立。

 

Image 1

 

2. 設定您的URL與資料庫(這邊假設是MySQL資料庫)。

 

Image 2

 

3. 選擇同意並按下確認。

 

Image 3

 

4. 點擊進入並進入儀表板。

 

Image 4

Image 5

 

5. 設定部屬認證帳號密碼。

 

Image 26

Image 27

 

6. 回到儀表板選擇 "設定從原始控制進行部屬" 建立本地端Git儲存機制。

 

Image 6

Image 7

 

7. 這時候會發現多了 "部屬" 並點擊進入 接著第一步下載Git到本機安裝。

 

Image 8

Image 9

 

8. 開始安裝。

 

Image 10

Image 11

Image 12

Image 18

 

我們先選預設值安裝。

 

Image 19

Image 20

Image 14

Image 15

Image 16

Image 17

 

9. 第二步是要認可本機檔案,假設今天我的index.php檔案放在C:\Users\KeRong\test 。

 

Image 22

Image 14

Image 1

 

10. 開啟命令提示字元並依序輸入

 

git init
git add .
git commit -m "initial commit"
 

Image 2

 
PS:這邊要注意的是 git add . 要輸入您的網頁名稱 git add index.php
 

Image 3

Image 4

 

這時候會出現要輸入您的身分。

 

那我們要如何輸入我們的識別資料呢?

 

11. 輸入識別資料。

 

git config --global user.name "Your Name"

git config --global user.email you@example.com

 

Image 5

Image 6

 

輸入完畢後我們再輸入一次 git commit -m "initial commit"  。

 

Image 7

 

12. 接著我們要加入遠端儲存機制與推送資料上去。

 

Image 31

 

PS:依序輸入您的命令即可

 

git remote add azure https://michael80321@phponazure.scm.azurewebsites.net:443/PHPonAzure.git
git push azure master

 

Image 8

Image 9

 

這個時候輸入之前設定的密碼即可

 

Image 10

 

這時候回到Azure上面會看到已經部屬上去了

 

Image 11

 

13 . 開啟網頁。

 

Image 12

Image 13

 

希望對您有幫助 ^_^

如有錯誤請多多指教

 

參考資料

 

初次設定Git

 

Git 學習筆記 (1):安裝、選項設定、在本地使用 Git 工具

 

Publishing to Azure Websites with Git