diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-01-04 10:33:49 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-01-04 10:33:49 -0800 |
commit | 0fd5dec9de3bf444647200f207239b0fc1d60f54 (patch) | |
tree | 8c775b4efa542d7eb8778a25733b9481a96a4d00 /cmd/ponzu/main.go | |
parent | fc51643434c5eef8417a62b9f83fec3823c393ec (diff) |
adding https_port from db to enabledev func
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index b68065c..b122f7f 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -130,7 +130,8 @@ func main() { } serve := exec.Command("./ponzu-server", - fmt.Sprintf("--port=%d --httpsport=%d", port, httpsport), + fmt.Sprintf("--port=%d", port), + fmt.Sprintf("--httpsport=%d", httpsport), addTLS, "serve", services, |