aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/gopherproxy/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gopherproxy/main.go')
-rw-r--r--cmd/gopherproxy/main.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/cmd/gopherproxy/main.go b/cmd/gopherproxy/main.go
new file mode 100644
index 0000000..1b69671
--- /dev/null
+++ b/cmd/gopherproxy/main.go
@@ -0,0 +1,25 @@
1package main
2
3import (
4 "flag"
5 "log"
6
7 gopherproxy "git.vulpes.one/gopherproxy/internal/gopherproxy"
8)
9
10var (
11 // TODO: Allow config file and environment vars
12 // (opt -> env -> config -> default)
13 bind = flag.String("bind", "0.0.0.0:8000", "[int]:port to bind to")
14 startpagefile = flag.String("startpage-file", "startpage.txt", "Default page to display if no URL is specified")
15 robotsfile = flag.String("robots-file", "robots.txt", "robots.txt file")
16 robotsdebug = flag.Bool("robots-debug", false, "print output about ignored robots.txt")
17 vipsconcurrency = flag.Int("vips-concurrency", 1, "Concurrency level of libvips")
18)
19
20func main() {
21 flag.Parse()
22
23 // Use a gopherproxy struct
24 log.Fatal(gopherproxy.ListenAndServe(*bind, *startpagefile, *robotsfile, *robotsdebug, *vipsconcurrency))
25}