670c639d75
- Standardize cron syntax to use double quotes in codeql.yml - Update CodeQL action to version 3 in codeql.yml - Standardize Go version syntax to use double quotes in go.yml - Update golangci-lint-action to version 4 in go.yml - Update actions/cache to version 4 in go.yml - Update codecov-action to version 4 in go.yml - Standardize wildcard syntax to use double quotes in goreleaser.yml - Remove unnecessary newlines in goreleaser.yml - Update Go version to use semver range in goreleaser.yml 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)
}
}