summaryrefslogtreecommitdiff
path: root/https.go
diff options
context:
space:
mode:
Diffstat (limited to 'https.go')
-rw-r--r--https.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/https.go b/https.go
index 33a1099..00fca19 100644
--- a/https.go
+++ b/https.go
@@ -6,10 +6,10 @@ import (
)
func https() {
- http.HandleFunc("/", okHandler)
+ // http.HandleFunc("/", okHandler)
- certPath := "/etc/letsencrypt/live/yourdomain.com/fullchain.pem"
- keyPath := "/etc/letsencrypt/live/yourdomain.com/privkey.pem"
+ certPath := "/etc/letsencrypt/live/go.wit.com/fullchain.pem"
+ keyPath := "/etc/letsencrypt/live/go.wit.com/privkey.pem"
err := http.ListenAndServeTLS(":443", certPath, keyPath, nil)
if err != nil {