reader: change proxy name.

This change resolves the problem I was running into where the Java
client could not connect to the cloudsync instance.

Suharsh helped me figure out the problem and it was happening because
our cloudsync running script was using the old proxy name.

Change-Id: I482c6fec449383ce00f3261c13130f8f8101ecbb
diff --git a/web/Makefile b/web/Makefile
index e32d7f8..5543259 100644
--- a/web/Makefile
+++ b/web/Makefile
@@ -105,7 +105,7 @@
 		--root-dir="tmp/syncbase_$(id)" \
 		--name="users/$(email)/reader/$(id)/syncbase" \
 		--v23.namespace.root="/ns.dev.v.io:8101" \
-		--v23.proxy="/ns.dev.v.io:8101/proxy" \
+		--v23.proxy="proxy" \
 		--v23.tcp.address=":$(syncbase_port)" \
 		--v23.credentials="credentials" \
 		--v23.permissions.literal='{"Admin":{"In":["..."]},"Write":{"In":["..."]},"Read":{"In":["..."]},"Resolve":{"In":["..."]},"Debug":{"In":["..."]}}'
@@ -120,7 +120,7 @@
 		--root-dir="tmp/cloudsync" \
 		--name="users/$(email)/reader/cloudsync" \
 		--v23.namespace.root="/ns.dev.v.io:8101" \
-		--v23.proxy="/ns.dev.v.io:8101/proxy" \
+		--v23.proxy="proxy" \
 		--v23.tcp.address=":$(cloudsync_port)" \
 		--v23.credentials="credentials" \
 		--v23.permissions.literal='{"Admin":{"In":["..."]},"Write":{"In":["..."]},"Read":{"In":["..."]},"Resolve":{"In":["..."]},"Debug":{"In":["..."]}}'