commit 947636ae817fdb393b4fcb2901bf52bca36cef65 Author: David Fifield david@bamsoftware.com Date: Sun Apr 15 16:59:43 2018 -0700
Change to standalone broker.
https://snowflake-reg-test.appspot.com/ for the client (needs domain fronting) https://snowflake-broker.bamsoftware.com/ for the proxies (no fronting)
Note that fronting to App Engine doesn't currently actually work because of https://bugs.torproject.org/25804; this commit doesn't change that. --- README.md | 2 +- client/README.md | 2 +- client/torrc | 2 +- proxy-go/snowflake.go | 2 +- proxy/README.md | 2 +- proxy/snowflake.coffee | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md index 6bc37e9..9b0827f 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ For example:
``` ClientTransportPlugin snowflake exec ./client \ --url https://snowflake-reg.appspot.com/ \ +-url https://snowflake-reg-test.appspot.com/ \ -front www.google.com \ -ice stun:stun.l.google.com:19302 -max 3 diff --git a/client/README.md b/client/README.md index 294d9ee..1989209 100644 --- a/client/README.md +++ b/client/README.md @@ -7,7 +7,7 @@ It is based on goptlib. The client uses these following `torrc` options by default: ``` ClientTransportPlugin snowflake exec ./client \ --url https://snowflake-reg.appspot.com/ \ +-url https://snowflake-reg-test.appspot.com/ \ -front www.google.com \ -ice stun:stun.l.google.com:19302 ``` diff --git a/client/torrc b/client/torrc index 6912760..0de2d36 100644 --- a/client/torrc +++ b/client/torrc @@ -2,7 +2,7 @@ UseBridges 1 DataDirectory datadir
ClientTransportPlugin snowflake exec ./client \ --url https://snowflake-reg.appspot.com/ \ +-url https://snowflake-reg-test.appspot.com/ \ -front www.google.com \ -ice stun:stun.l.google.com:19302 \ -max 3 diff --git a/proxy-go/snowflake.go b/proxy-go/snowflake.go index 7bb435c..2e8fe20 100644 --- a/proxy-go/snowflake.go +++ b/proxy-go/snowflake.go @@ -22,7 +22,7 @@ import ( "golang.org/x/net/websocket" )
-const defaultBrokerURL = "https://snowflake-reg.appspot.com/" +const defaultBrokerURL = "https://snowflake-broker.bamsoftware.com/" const defaultRelayURL = "wss://snowflake.bamsoftware.com/" const defaultSTUNURL = "stun:stun.l.google.com:19302" const pollInterval = 5 * time.Second diff --git a/proxy/README.md b/proxy/README.md index 0657331..91edbbd 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -32,7 +32,7 @@ To run locally, either: With no parameters, snowflake uses the default relay `snowflake.bamsoftware.com:443` and uses automatic signaling with the default broker at -`https://snowflake-reg.appspot.com/%60. +`https://snowflake-broker.bamsoftware.com/%60.
Here are optional parameters to include in the query string. ``` diff --git a/proxy/snowflake.coffee b/proxy/snowflake.coffee index 1f5674b..e0d6921 100644 --- a/proxy/snowflake.coffee +++ b/proxy/snowflake.coffee @@ -11,7 +11,7 @@ TODO: More documentation
# General snowflake proxy constants. # For websocket-specific constants, see websocket.coffee. -DEFAULT_BROKER = 'snowflake-reg.appspot.com' +DEFAULT_BROKER = 'snowflake-broker.bamsoftware.com' DEFAULT_RELAY = host: 'snowflake.bamsoftware.com' port: '443'
tor-commits@lists.torproject.org