debug from any server

This commit is contained in:
Chris Lu 2021-07-31 02:13:21 -07:00
parent 0d6f45cb46
commit 1ff8285d82
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,7 @@ var cmdFiler = &Command{
func runFiler(cmd *Command, args []string) bool {
if *f.debug {
go http.ListenAndServe("localhost:6060", nil)
go http.ListenAndServe(":6060", nil)
}
util.LoadConfiguration("security", false)

View file

@ -143,7 +143,7 @@ func init() {
func runServer(cmd *Command, args []string) bool {
if *serverOptions.debug {
go http.ListenAndServe("localhost:6060", nil)
go http.ListenAndServe(":6060", nil)
}
util.LoadConfiguration("security", false)