Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: web_page_replay_go/README

Issue 2999463002: [wpr-go] Update README (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « telemetry/README.md ('k') | web_page_replay_go/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: web_page_replay_go/README
diff --git a/web_page_replay_go/README b/web_page_replay_go/README
deleted file mode 100644
index f95dc63e0da51d7076d62db98f485596a672ac82..0000000000000000000000000000000000000000
--- a/web_page_replay_go/README
+++ /dev/null
@@ -1,48 +0,0 @@
-Requires go 1.5. Not tested with earlier or later versions of go.
-
-REQUIRED PACKAGES
-
-$ go get github.com/codegangsta/cli
-
-SETUP GOPATH
-
-$ export GOPATH=/path/to/web_page_replay_go:"$HOME/go"
-
-SAMPLE USAGE
-
-Terminal 1:
-
-Install a test certificate authority.
-$ go run src/wpr.go installroot
-
-Start wpr in record mode.
-$ go run src/wpr.go record --http_port=8080 --https_port=8081 /tmp/archive.json
-...
-Ctrl-C
-
-Start wpr in replay mode.
-$ go run src/wpr.go replay --http_port=8080 --https_port=8081 /tmp/archive.json
-
-Uninstall the test certificate authority.
-$ go run src/wpr.go removeroot
-
-Terminal 2:
-$ google-chrome-beta --user-data-dir=$foo \
- --host-resolver-rules="MAP *:80 127.0.0.1:8080,MAP *:443 127.0.0.1:8081,EXCLUDE localhost"
-... wait for record servers to start
-load a page
-... wait for replay servers to start
-... clear cache
-load the page again
-
-HTTP-to-HTTP2 PROXY:
-
-Terminal 1:
-$ go run src/wpr.go replay --https_port=8081 --https_to_http_port=8082 \
- /tmp/archive.json
-
-Terminal 2:
-$ google-chrome-beta --user-data-dir=$foo \
- --host-resolver-rules="MAP *:443 127.0.0.1:8081,EXCLUDE localhost" \
- --proxy-server=http=https://127.0.0.1:8082 \
- --trusted-spdy-proxy=127.0.0.1:8082
« no previous file with comments | « telemetry/README.md ('k') | web_page_replay_go/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698