From c217b7cd2291025e1fc37e32a0865753d0f673fd Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sun, 2 Mar 2014 17:29:35 +0100 Subject: [PATCH] Change default announce server to announce.syncthing.net --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index eda7dc22..df250600 100644 --- a/config.go +++ b/config.go @@ -36,7 +36,7 @@ type OptionsConfiguration struct { FollowSymlinks bool `xml:"followSymlinks" default:"true" ini:"follow-symlinks"` GUIEnabled bool `xml:"guiEnabled" default:"true" ini:"gui-enabled"` GUIAddress string `xml:"guiAddress" default:"127.0.0.1:8080" ini:"gui-address"` - GlobalAnnServer string `xml:"globalAnnounceServer" default:"syncthing.nym.se:22025" ini:"global-announce-server"` + GlobalAnnServer string `xml:"globalAnnounceServer" default:"announce.syncthing.net:22025" ini:"global-announce-server"` GlobalAnnEnabled bool `xml:"globalAnnounceEnabled" default:"true" ini:"global-announce-enabled"` LocalAnnEnabled bool `xml:"localAnnounceEnabled" default:"true" ini:"local-announce-enabled"` ParallelRequests int `xml:"parallelRequests" default:"16" ini:"parallel-requests"`