diff options
Diffstat (limited to 'https.go')
| -rw-r--r-- | https.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 { |
