前面的話
作者為golang腦殘粉,本篇內容可能會引起phper不適,請慎讀!
前兩天有同事遇到一個問題,需要一個能支援上傳、下載功能的HTTP伺服器做一個資料中心。我剛好弄過,於是答應幫他搭一個。
HTTP伺服器,首先想到的就是PHP + nginx。於是開擼,先寫一個PHP的上傳
<?php if ($_FILES["file"]["error"] > 0) { echo "錯誤:: " . $_FILES["file"]["error"] . "<br>"; } else { if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " 檔案已經存在。 "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "檔案儲存體在: " . "upload/" . $_FILES["file"]["name"]; } }?>
好了,寫好了!需求完成了!測試一下把!
於是開始第一次測試,結果:失敗!
原因是PHP的upload_max_filesize只有2M,上傳的檔案大小超過限制了。
修改了一下php.ini配置,再次測試可以上傳了
那麼部署到伺服器上去把。伺服器上有一個openresty(nginx的系列的web伺服器),把upload.php檔案丟裡面,然後重啟服務。好了,又可以測試一下了!
於是第二次測試,結果:失敗!
原因是,openresty預設沒開php解析,要改下配置。把nginx.conf裡的php解析開啟一下。重啟nginx,然後再測試一下吧~
於是,第三次測試,還是失敗!
原來。。這台機器上,雖然有nginx,但是沒有安裝PHP!!! 想到還要去外網下載PHP,然後還要選版本,然後回來安裝還要配置環境變數以及openresty關聯php的配置後。。
算了,再見吧 PHP!
輪到Go語言上場的時候了!!
在golang的世界裡1行代碼就能搞定一個檔案伺服器
package mainimport ( "log" "net/http")func main() { log.Fatal(http.ListenAndServe(":8038", http.FileServer(http.Dir("./"))))}
就這樣,你就可以在本機訪問8038連接埠去下載指定路徑的檔案了!不需要依賴nginx或者其他任何web伺服器
包含上傳、下載功能的FileServer.go全部代碼如下
package mainimport ( "fmt" "io" "log" "net/http" "os")const ( uploadPath = "./Files/")func main() { http.HandleFunc("/upload", uploadHandle) fs := http.FileServer(http.Dir(uploadPath)) http.Handle("/Files/", http.StripPrefix("/Files", fs)) log.Fatal(http.ListenAndServe(":8037", nil))}func uploadHandle(w http.ResponseWriter, r *http.Request) { file, head, err := r.FormFile("file") if err != nil { fmt.Println(err) return } defer file.Close() filePath := uploadPath + head.Filename fW, err := os.Create(filePath) if err != nil { fmt.Println("檔案建立失敗") return } defer fW.Close() _, err = io.Copy(fW, file) if err != nil { fmt.Println("檔案儲存失敗") return } io.WriteString(w, "save to "+filePath)}
如何部署
go是靜態編譯型語言,直接編譯出可執行檔,在windows上也就是exe。放到任何一台機器上,不需要安裝額外環境,就能直接運行!
所以編譯出FileServer.exe檔案,丟到伺服器機子上執行。
繼續測試!結果: 成功,穩!