1 Star 0 Fork 52

举子 / Monibuca

forked from Gitee 极速下载 / Monibuca 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
langhuihui 提交于 2021-07-31 16:25 . 版本升级
package main
import (
"context"
"embed"
"flag"
"mime"
"net/http"
_ "net/http/pprof"
"os"
"os/signal"
"path"
"path/filepath"
"syscall"
. "github.com/Monibuca/engine/v3"
// _ "github.com/Monibuca/plugin-ffmpeg"
// _ "github.com/Monibuca/plugin-cluster"
_ "github.com/Monibuca/plugin-gateway/v3"
_ "github.com/Monibuca/plugin-gb28181/v3"
_ "github.com/Monibuca/plugin-hdl/v3"
_ "github.com/Monibuca/plugin-hls/v3"
_ "github.com/Monibuca/plugin-jessica/v3"
_ "github.com/Monibuca/plugin-logrotate/v3"
_ "github.com/Monibuca/plugin-record/v3"
_ "github.com/Monibuca/plugin-rtmp/v3"
_ "github.com/Monibuca/plugin-rtsp/v3"
_ "github.com/Monibuca/plugin-summary"
_ "github.com/Monibuca/plugin-ts/v3"
_ "github.com/Monibuca/plugin-webrtc/v3"
)
//go:embed ui/*
var ui embed.FS
func main() {
addr := flag.String("c", "config.toml", "config file")
flag.Parse()
if _, err := os.Stat(*addr); err == nil {
Run(*addr)
} else {
Run(filepath.Join(filepath.Dir(os.Args[0]), *addr))
}
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
filePath := r.URL.Path
if filePath == "/" {
filePath = "/index.html"
}
if mime := mime.TypeByExtension(path.Ext(filePath)); mime != "" {
w.Header().Set("Content-Type", mime)
}
if f, err := ui.ReadFile("ui" + filePath); err == nil {
w.Header().Set("Cache-Control","max-age=3600")
if _, err = w.Write(f); err != nil {
w.WriteHeader(505)
}
} else {
w.Header().Set("Location", "/")
w.WriteHeader(302)
}
})
waiter(context.Background())
}
func waiter(ctx context.Context) {
sigc := make(chan os.Signal, 1)
signal.Notify(sigc, syscall.SIGINT, syscall.SIGTERM)
defer signal.Stop(sigc)
<-sigc
ctx.Done()
}
1
https://gitee.com/52juzi/Monibuca.git
git@gitee.com:52juzi/Monibuca.git
52juzi
Monibuca
Monibuca
3.0

搜索帮助