diff options
author | Feuerfuchs <git@feuerfuchs.dev> | 2019-11-16 00:55:25 +0100 |
---|---|---|
committer | Feuerfuchs <git@feuerfuchs.dev> | 2019-11-16 00:55:25 +0100 |
commit | 9bed6157351eea6fdbccff69aba5cc967a0b2a56 (patch) | |
tree | e7b555078e7a4593f3e3456121dc8b04ae7b10a1 /cmd | |
parent | Only enable max with if wrapping is enabled (diff) | |
download | gopherproxy-9bed6157351eea6fdbccff69aba5cc967a0b2a56.tar.gz gopherproxy-9bed6157351eea6fdbccff69aba5cc967a0b2a56.tar.bz2 gopherproxy-9bed6157351eea6fdbccff69aba5cc967a0b2a56.zip |
Initial Gemini support
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gopherproxy/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gopherproxy/main.go b/cmd/gopherproxy/main.go index e699d14..66248ac 100644 --- a/cmd/gopherproxy/main.go +++ b/cmd/gopherproxy/main.go | |||
@@ -13,7 +13,7 @@ var ( | |||
13 | bind = flag.String("bind", "0.0.0.0:8000", "[int]:port to bind to") | 13 | bind = flag.String("bind", "0.0.0.0:8000", "[int]:port to bind to") |
14 | robotsfile = flag.String("robots-file", "robots.txt", "robots.txt file") | 14 | robotsfile = flag.String("robots-file", "robots.txt", "robots.txt file") |
15 | robotsdebug = flag.Bool("robots-debug", false, "print output about ignored robots.txt") | 15 | robotsdebug = flag.Bool("robots-debug", false, "print output about ignored robots.txt") |
16 | uri = flag.String("uri", "floodgap.com", "<host>:[port] to proxy to") | 16 | uri = flag.String("uri", "gopher/floodgap.com", "<gopher|gemini>/<host>:[port] to proxy to") |
17 | vipsconcurrency = flag.Int("vips-concurrency", 1, "Concurrency level of libvips") | 17 | vipsconcurrency = flag.Int("vips-concurrency", 1, "Concurrency level of libvips") |
18 | ) | 18 | ) |
19 | 19 | ||