summaryrefslogtreecommitdiff
path: root/system/tls/enable.go
diff options
context:
space:
mode:
authorSteve <nilslice@gmail.com>2016-12-06 15:24:36 -0800
committerGitHub <noreply@github.com>2016-12-06 15:24:36 -0800
commitf39c1519ab382a343c05163f00f38c83bff3583d (patch)
tree254f75834f2cb787179f7880b0063e667d8ad234 /system/tls/enable.go
parent5527117e706114c1188afaa10188d96170874047 (diff)
parent64050ef8065bccdef0aab1748040995c637fe9ed (diff)
Merge pull request #19 from bosssauce/ponzu-dev
[core] Added account recovery process and content pagination in admin UI
Diffstat (limited to 'system/tls/enable.go')
-rw-r--r--system/tls/enable.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/tls/enable.go b/system/tls/enable.go
index c53fac6..4ade194 100644
--- a/system/tls/enable.go
+++ b/system/tls/enable.go
@@ -42,7 +42,7 @@ func setup() {
if host == nil {
log.Fatalln("No 'domain' field set in Configuration. Please add a domain before attempting to make certificates.")
}
- fmt.Println("Using", host, "as host/domain for certificate...")
+ fmt.Println("Using", string(host), "as host/domain for certificate...")
fmt.Println("NOTE: if the host/domain is not configured properly or is unreachable, HTTPS set-up will fail.")
email, err := db.Config("admin_email")
@@ -53,7 +53,7 @@ func setup() {
if email == nil {
log.Fatalln("No 'admin_email' field set in Configuration. Please add an admin email before attempting to make certificates.")
}
- fmt.Println("Using", email, "as contact email for certificate...")
+ fmt.Println("Using", string(email), "as contact email for certificate...")
m = autocert.Manager{
Prompt: autocert.AcceptTOS,