frp/server/dashboard.go

100 lines
3.0 KiB
Go
Raw Normal View History

2017-03-23 02:01:25 +08:00
// Copyright 2017 fatedier, fatedier@gmail.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package server
import (
2022-06-27 10:08:02 +08:00
"crypto/tls"
"net"
2016-08-09 21:17:02 +08:00
"net/http"
2022-03-17 11:42:59 +08:00
"net/http/pprof"
"time"
2018-05-20 19:06:05 +08:00
"github.com/gorilla/mux"
"github.com/prometheus/client_golang/prometheus/promhttp"
2022-08-29 01:02:53 +08:00
"github.com/fatedier/frp/assets"
2023-05-29 14:10:34 +08:00
utilnet "github.com/fatedier/frp/pkg/util/net"
)
var (
2022-03-17 11:42:59 +08:00
httpServerReadTimeout = 60 * time.Second
httpServerWriteTimeout = 60 * time.Second
)
2016-08-09 21:17:02 +08:00
2021-03-10 20:19:58 +08:00
func (svr *Service) RunDashboardServer(address string) (err error) {
// url router
2018-05-20 19:06:05 +08:00
router := mux.NewRouter()
router.HandleFunc("/healthz", svr.Healthz)
2022-03-17 11:42:59 +08:00
// debug
if svr.cfg.WebServer.PprofEnable {
2022-03-17 11:42:59 +08:00
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()
2017-03-23 02:01:25 +08:00
user, passwd := svr.cfg.WebServer.User, svr.cfg.WebServer.Password
2023-05-29 14:10:34 +08:00
subRouter.Use(utilnet.NewHTTPAuthMiddleware(user, passwd).SetAuthFailDelay(200 * time.Millisecond).Middleware)
// metrics
if svr.cfg.EnablePrometheus {
subRouter.Handle("/metrics", promhttp.Handler())
}
// api, see dashboard_api.go
subRouter.HandleFunc("/api/serverinfo", svr.APIServerInfo).Methods("GET")
subRouter.HandleFunc("/api/proxy/{type}", svr.APIProxyByType).Methods("GET")
subRouter.HandleFunc("/api/proxy/{type}/{name}", svr.APIProxyByTypeAndName).Methods("GET")
subRouter.HandleFunc("/api/traffic/{name}", svr.APIProxyTraffic).Methods("GET")
2017-03-27 01:39:05 +08:00
// view
subRouter.Handle("/favicon.ico", http.FileServer(assets.FileSystem)).Methods("GET")
2023-05-29 14:10:34 +08:00
subRouter.PathPrefix("/static/").Handler(utilnet.MakeHTTPGzipHandler(http.StripPrefix("/static/", http.FileServer(assets.FileSystem)))).Methods("GET")
subRouter.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
2017-03-27 01:39:05 +08:00
http.Redirect(w, r, "/static/", http.StatusMovedPermanently)
2018-05-20 19:06:05 +08:00
})
server := &http.Server{
Addr: address,
2017-03-23 02:01:25 +08:00
Handler: router,
ReadTimeout: httpServerReadTimeout,
WriteTimeout: httpServerWriteTimeout,
}
ln, err := net.Listen("tcp", address)
2016-08-09 21:17:02 +08:00
if err != nil {
return err
}
if svr.cfg.WebServer.TLS != nil {
cert, err := tls.LoadX509KeyPair(svr.cfg.WebServer.TLS.CertFile, svr.cfg.WebServer.TLS.KeyFile)
2022-06-27 10:08:02 +08:00
if err != nil {
return err
}
tlsCfg := &tls.Config{
Certificates: []tls.Certificate{cert},
}
ln = tls.NewListener(ln, tlsCfg)
}
2022-08-29 01:02:53 +08:00
go func() {
_ = server.Serve(ln)
}()
return
2016-08-09 21:17:02 +08:00
}