diff options
-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") } |