mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-12 16:26:37 +00:00
Default to running GUI on 127.0.0.1:8080
This commit is contained in:
parent
334961fe10
commit
884a7d6a1b
5
gui.go
5
gui.go
@ -29,7 +29,10 @@ func startGUI(addr string, m *model.Model) {
|
|||||||
mr.Use(martini.Recovery())
|
mr.Use(martini.Recovery())
|
||||||
mr.Action(router.Handle)
|
mr.Action(router.Handle)
|
||||||
mr.Map(m)
|
mr.Map(m)
|
||||||
http.ListenAndServe(addr, mr)
|
err := http.ListenAndServe(addr, mr)
|
||||||
|
if err != nil {
|
||||||
|
warnln("GUI not possible:", err)
|
||||||
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
main.go
5
main.go
@ -28,7 +28,8 @@ type Options struct {
|
|||||||
NoDelete bool `long:"no-delete" description:"Never delete files"`
|
NoDelete bool `long:"no-delete" description:"Never delete files"`
|
||||||
NoSymlinks bool `long:"no-symlinks" description:"Don't follow first level symlinks in the repo"`
|
NoSymlinks bool `long:"no-symlinks" description:"Don't follow first level symlinks in the repo"`
|
||||||
NoStats bool `long:"no-stats" description:"Don't print model and connection statistics"`
|
NoStats bool `long:"no-stats" description:"Don't print model and connection statistics"`
|
||||||
GUIAddr string `long:"gui" description:"GUI listen address" default:"" value-name:"ADDR"`
|
NoGUI bool `long:"no-gui" description:"Don't start GUI"`
|
||||||
|
GUIAddr string `long:"gui-addr" description:"GUI listen address" default:"127.0.0.1:8080" value-name:"ADDR"`
|
||||||
Discovery DiscoveryOptions `group:"Discovery Options"`
|
Discovery DiscoveryOptions `group:"Discovery Options"`
|
||||||
Advanced AdvancedOptions `group:"Advanced Options"`
|
Advanced AdvancedOptions `group:"Advanced Options"`
|
||||||
Debug DebugOptions `group:"Debugging Options"`
|
Debug DebugOptions `group:"Debugging Options"`
|
||||||
@ -139,7 +140,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// GUI
|
// GUI
|
||||||
if opts.GUIAddr != "" {
|
if !opts.NoGUI && opts.GUIAddr != "" {
|
||||||
startGUI(opts.GUIAddr, m)
|
startGUI(opts.GUIAddr, m)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user