-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
79 lines (70 loc) · 1.79 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package main
import (
"fmt"
"log"
"net/http"
"net/http/httputil"
"net/url"
"os"
"github.com/angelbarrera92/basic-auth-reverse-proxy/proxy"
"gopkg.in/urfave/cli.v1"
)
var (
version = "dev"
commit = "none"
date = "unknown"
)
func serve(c *cli.Context) error {
upstream := c.String("upstream")
port := c.Int("port")
authConfigPath := c.String("auth-config")
realm := c.String("realm")
authConfig, err := proxy.ParseConfig(&authConfigPath)
if err != nil {
log.Fatalf("Can not read auth configuration file: %v", err)
return err
}
upstreamURL, _ := url.Parse(upstream)
reverseProxy := httputil.NewSingleHostReverseProxy(upstreamURL)
http.HandleFunc("/", proxy.BasicAuth(proxy.ReverseProxyHandler(reverseProxy, upstreamURL), *authConfig, realm))
serveAt := fmt.Sprintf(":%d", port)
if err := http.ListenAndServe(serveAt, nil); err != nil {
log.Fatalf("Reverse Proxy can not start %v", err)
return err
}
return nil
}
func main() {
app := cli.NewApp()
app.Name = "Basic Auth Reverse Proxy"
app.Usage = "Makes your upstream service secure"
app.Version = version
app.Author = "Ángel Barrera - @angelbarrera92"
app.Commands = []cli.Command{
{
Name: "serve",
Usage: "Runs the reverse proxy",
Action: serve,
Flags: []cli.Flag{
cli.IntFlag{
Name: "port",
Usage: "Port used to expose this reverse proxy",
Value: 11811,
}, cli.StringFlag{
Name: "upstream",
Usage: "Upstream server. Server that will be protected by this reverse proxy",
Value: "https://httpbin.org",
}, cli.StringFlag{
Name: "realm",
Usage: "Reverse proxy realm",
Value: "My Reverse Proxy",
}, cli.StringFlag{
Name: "auth-config",
Usage: "AuthN yaml configuration file path",
Value: "authn.yaml",
},
},
},
}
app.Run(os.Args)
}