golang의 https 서버

2305 단어 golang
선생님
openssl genrsa -out key.pem 2048
openssl req -new -x509 -key key.pem -out cert.pem -days 1095

 
그리고 대충 이렇게
package main

import (

    "log"
    "net/http"
)

func SayHello(w http.ResponseWriter, req *http.Request) {
    w.Write([]byte("Hello"))
}

func main() {

    http.HandleFunc("/", SayHello)
    err := http.ListenAndServeTLS(":8080", "cert.pem", "key.pem", nil)
    if err != nil {
        log.Fatal("ListenAndServe: ", err)
    }
}

 
무료 ssl 인증서 제조소 첨부
http://zyan.cc/startssl/

좋은 웹페이지 즐겨찾기