12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package client
- import (
- "net"
- "net/http"
- "net/http/pprof"
- "time"
- "github.com/gorilla/mux"
- "github.com/fatedier/frp/assets"
- utilnet "github.com/fatedier/frp/pkg/util/net"
- )
- var (
- httpServerReadTimeout = 60 * time.Second
- httpServerWriteTimeout = 60 * time.Second
- )
- func (svr *Service) RunAdminServer(address string) (err error) {
-
- router := mux.NewRouter()
- router.HandleFunc("/healthz", svr.healthz)
-
- if svr.cfg.WebServer.PprofEnable {
- router.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
- router.HandleFunc("/debug/pprof/profile", pprof.Profile)
- router.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
- router.HandleFunc("/debug/pprof/trace", pprof.Trace)
- router.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index)
- }
- subRouter := router.NewRoute().Subrouter()
- user, passwd := svr.cfg.WebServer.User, svr.cfg.WebServer.Password
- subRouter.Use(utilnet.NewHTTPAuthMiddleware(user, passwd).SetAuthFailDelay(200 * time.Millisecond).Middleware)
-
- subRouter.HandleFunc("/api/reload", svr.apiReload).Methods("GET")
- subRouter.HandleFunc("/api/stop", svr.apiStop).Methods("POST")
- subRouter.HandleFunc("/api/status", svr.apiStatus).Methods("GET")
- subRouter.HandleFunc("/api/config", svr.apiGetConfig).Methods("GET")
- subRouter.HandleFunc("/api/config", svr.apiPutConfig).Methods("PUT")
-
- subRouter.Handle("/favicon.ico", http.FileServer(assets.FileSystem)).Methods("GET")
- subRouter.PathPrefix("/static/").Handler(utilnet.MakeHTTPGzipHandler(http.StripPrefix("/static/", http.FileServer(assets.FileSystem)))).Methods("GET")
- subRouter.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
- http.Redirect(w, r, "/static/", http.StatusMovedPermanently)
- })
- server := &http.Server{
- Addr: address,
- Handler: router,
- ReadTimeout: httpServerReadTimeout,
- WriteTimeout: httpServerWriteTimeout,
- }
- if address == "" {
- address = ":http"
- }
- ln, err := net.Listen("tcp", address)
- if err != nil {
- return err
- }
- go func() {
- _ = server.Serve(ln)
- }()
- return
- }
|