diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-05-22 02:46:22 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-05-22 02:46:22 -0700 |
commit | f54c31eea40454a088751d07874eb8dee61c84c9 (patch) | |
tree | c09b7c3288fd6673fa2689b256015ed1f3444925 /cmd | |
parent | 7320876cefcf5445b9a6e010b8903a8f9ffb874f (diff) |
fix typo
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ponzu/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index 4651b9e..b049f40 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -177,7 +177,7 @@ var serveCmd = &cobra.Command{ func init() { for _, cmd := range []*cobra.Command{runCmd, serveCmd} { cmd.Flags().IntVar(&port, "port", 8080, "port for ponzu to bind its HTTP listener") - cmd.Flags().IntVar(&httpsport, "http-sport", 443, "port for ponzu to bind its HTTPS listener") + cmd.Flags().IntVar(&httpsport, "https-port", 443, "port for ponzu to bind its HTTPS listener") cmd.Flags().BoolVar(&https, "https", false, "enable automatic TLS/SSL certificate management") cmd.Flags().BoolVar(&devhttps, "dev-https", false, "[dev environment] enable automatic TLS/SSL certificate management") } |