Browse Source

Merge pull request #1528 from Zillode/change-gui-port

Change (default) GUI port from 8080 to 8384 ('ST' in ascii values)
Jakob Borg 10 years ago
parent
commit
c67e2c2a5a
3 changed files with 3 additions and 3 deletions
  1. 1 1
      cmd/stevents/main.go
  2. 1 1
      cmd/syncthing/main.go
  3. 1 1
      internal/config/config.go

+ 1 - 1
cmd/stevents/main.go

@@ -27,7 +27,7 @@ func main() {
 	log.SetOutput(os.Stdout)
 	log.SetFlags(0)
 
-	target := flag.String("target", "localhost:8080", "Target Syncthing instance")
+	target := flag.String("target", "localhost:8384", "Target Syncthing instance")
 	apikey := flag.String("apikey", "", "Syncthing API key")
 	flag.Parse()
 

+ 1 - 1
cmd/syncthing/main.go

@@ -749,7 +749,7 @@ func defaultConfig(myName string) config.Configuration {
 		},
 	}
 
-	port, err := getFreePort("127.0.0.1", 8080)
+	port, err := getFreePort("127.0.0.1", 8384)
 	if err != nil {
 		l.Fatalln("get free port (GUI):", err)
 	}

+ 1 - 1
internal/config/config.go

@@ -187,7 +187,7 @@ type OptionsConfiguration struct {
 
 type GUIConfiguration struct {
 	Enabled  bool   `xml:"enabled,attr" json:"enabled" default:"true"`
-	Address  string `xml:"address" json:"address" default:"127.0.0.1:8080"`
+	Address  string `xml:"address" json:"address" default:"127.0.0.1:8384"`
 	User     string `xml:"user,omitempty" json:"user"`
 	Password string `xml:"password,omitempty" json:"password"`
 	UseTLS   bool   `xml:"tls,attr" json:"useTLS"`