mirror of https://github.com/gin-gonic/gin.git
33 lines
537 B
Go
33 lines
537 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"html/template"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
var html = template.Must(template.New("https").Parse(`
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Https Test</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1 style="color:red;">Welcome, Ginner!</h1>
|
||
|
</body>
|
||
|
</html>
|
||
|
`))
|
||
|
|
||
|
func main() {
|
||
|
r := gin.Default()
|
||
|
r.SetHTMLTemplate(html)
|
||
|
|
||
|
r.GET("/welcome", func(c *gin.Context) {
|
||
|
c.HTML(200, "https", gin.H{
|
||
|
"status": "success",
|
||
|
})
|
||
|
})
|
||
|
|
||
|
// Listen and Server in https://127.0.0.1:8080
|
||
|
r.RunTLS(":8080", "./testdata/server.pem", "./testdata/server.key")
|
||
|
}
|