码迷,mamicode.com
首页 > 其他好文 > 详细

golang的https服务器

时间:2014-09-03 16:39:46      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   art   div   sp   log   

先生成ssl证书

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/

 

golang的https服务器

标签:style   blog   http   color   ar   art   div   sp   log   

原文地址:http://www.cnblogs.com/ziyouchutuwenwu/p/3953757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!