Merge pull request #5063 from Crypt-iQ/pprof_patch_03022021

lnd: optionally serve pprof on localhost for better security
This commit is contained in:
Olaoluwa Osuntokun
2021-04-05 20:20:39 -07:00
committed by GitHub
2 changed files with 30 additions and 11 deletions

4
lnd.go
View File

@ -227,11 +227,11 @@ func Main(cfg *Config, lisCfg ListenerCfg, interceptor signal.Interceptor) error
// Enable http profiling server if requested.
if cfg.Profile != "" {
go func() {
listenAddr := net.JoinHostPort("", cfg.Profile)
profileRedirect := http.RedirectHandler("/debug/pprof",
http.StatusSeeOther)
http.Handle("/", profileRedirect)
fmt.Println(http.ListenAndServe(listenAddr, nil))
ltndLog.Infof("Pprof listening on %v", cfg.Profile)
fmt.Println(http.ListenAndServe(cfg.Profile, nil))
}()
}