2958f15884
- Update Go version requirement from `1.15` to `1.18` - Upgrade `github.com/gin-gonic/gin` dependency from `v1.8.1` to `v1.9.1` - Upgrade `github.com/stretchr/testify` dependency from `v1.8.0` to `v1.8.4` - Add multiple new indirect dependencies including `github.com/bytedance/sonic`, `github.com/chenzhuoyu/base64x`, and others Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> |
||
---|---|---|
.github | ||
_example | ||
.gitignore | ||
.golangci.yml | ||
.goreleaser.yaml | ||
LICENSE | ||
README.md | ||
go.mod | ||
go.sum | ||
static.go | ||
static_test.go |
README.md
static middleware
Static middleware
Usage
Start using it
Download and install it:
go get github.com/gin-contrib/static
Import it in your code:
import "github.com/gin-contrib/static"
Canonical example
See the example
package main
import (
"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)
}
}