package staticServer
import (
"fmt"
"net/http"
"net/http/httputil"
"net/url"
"os"
"strings"
"time"
)
const staticPath = "./web" // 静态web目录
func Start() {
serveMux := http.NewServeMux()
serveMux.HandleFunc("/", StaticServer)
server := http.Server{
Addr: ":8080",
Handler: serveMux,
ReadTimeout: 10 * time.Second,
}
err := server.ListenAndServe()
if err != nil {
fmt.Println(err)
}
}
func StaticServer(w http.ResponseWriter, r *http.Request) {
// 反向代理
if strings.HasPrefix(r.URL.Path, "/api") || strings.HasPrefix(r.URL.Path, "/upload") {
remote, _ := url.Parse("http://127.0.0.1:8888")
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/api")
proxy := httputil.NewSingleHostReverseProxy(remote)
proxy.ServeHTTP(w, r)
return
}
if isFile(staticPath + r.URL.Path) {
http.StripPrefix("/", http.FileServer(http.Dir(staticPath))).ServeHTTP(w, r)
} else {
http.StripPrefix(r.URL.Path, http.FileServer(http.Dir(staticPath))).ServeHTTP(w, r)
}
}
// 是否是文件 不是文件也不一定是目录
func isFile(path string) bool {
s, err := os.Stat(path)
if err != nil {
return false
}
return !s.IsDir()
}
前后端分离的Golang静态web服务器|反向代理Api请求
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 为什么需要 “前后端分离、web与static服务器分离” web前端的发展历史大致可以分为两个阶段:nod...
- 前后端分离、web与static服务器分离 1. 为什么需要 “前后端分离、web与static服务器分离” we...