27 lines
528 B
Go
27 lines
528 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/gin-contrib/static"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func main() {
|
|
r := gin.Default()
|
|
|
|
// if Allow DirectoryIndex
|
|
// r.Use(static.Serve("/", static.LocalFile("/tmp", true)))
|
|
// set prefix
|
|
// r.Use(static.Serve("/static", static.LocalFile("/tmp", true)))
|
|
|
|
r.Use(static.Serve("/", static.LocalFile("/tmp", false)))
|
|
r.GET("/ping", func(c *gin.Context) {
|
|
c.String(200, "test")
|
|
})
|
|
// Listen and Server in 0.0.0.0:8080
|
|
if err := r.Run(":8080"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|