aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--flags.go2
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 4f6ab2e..bbd7f4c 100644
--- a/README.md
+++ b/README.md
@@ -70,7 +70,7 @@ program provided near the HTML form, and submit their nonce manually.
You need a working Go installation, along with Clang and LLD for WebAssembly.
```
-git clone ssh://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/
+git clone ssh://forge.lindenii.runxiyu.org/powxy/-/repos/powxy/
cd powxy
make
```
@@ -92,7 +92,7 @@ Usage of ./powxy:
-secondary
trust X-Forwarded-For headers
-source string
- url to the source code (default "https://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/")
+ url to the source code (default "https://forge.lindenii.runxiyu.org/powxy/-/repos/powxy/")
-upstream string
destination url base to proxy to (default "http://127.0.0.1:8080")
-write-timeout int
@@ -102,11 +102,11 @@ Usage of ./powxy:
## Contribute
Create a branch that begins with `contrib/` and push to
-[the repo on our home forge](https://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/)
+[the repo on our home forge](https://forge.lindenii.runxiyu.org/powxy/-/repos/powxy/)
via SSH.
```
-git clone ssh://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/
+git clone ssh://forge.lindenii.runxiyu.org/powxy/-/repos/powxy/
cd powxy
git checkout -b contrib/whatever
# edit and commit stuff
diff --git a/flags.go b/flags.go
index 007332c..6c299c8 100644
--- a/flags.go
+++ b/flags.go
@@ -21,7 +21,7 @@ var (
// This init parses command line flags.
func init() {
flag.UintVar(&global.NeedBits, "difficulty", 20, "leading zero bits required for the challenge")
- flag.StringVar(&global.SourceURL, "source", "https://forge.lindenii.runxiyu.org/powxy/:/repos/powxy/", "url to the source code")
+ flag.StringVar(&global.SourceURL, "source", "https://forge.lindenii.runxiyu.org/powxy/-/repos/powxy/", "url to the source code")
flag.StringVar(&listenAddr, "listen", ":8081", "address to listen on")
flag.StringVar(&destHost, "upstream", "http://127.0.0.1:8080", "destination url base to proxy to")
flag.BoolVar(&secondary, "secondary", false, "trust X-Forwarded-For headers")