static/README.md

56 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

# static middleware
[![Run Tests](https://github.com/gin-contrib/static/actions/workflows/go.yml/badge.svg)](https://github.com/gin-contrib/static/actions/workflows/go.yml)
[![codecov](https://codecov.io/gh/gin-contrib/static/branch/master/graph/badge.svg)](https://codecov.io/gh/gin-contrib/static)
[![Go Report Card](https://goreportcard.com/badge/github.com/gin-contrib/static)](https://goreportcard.com/report/github.com/gin-contrib/static)
[![GoDoc](https://godoc.org/github.com/gin-contrib/static?status.svg)](https://godoc.org/github.com/gin-contrib/static)
2016-12-13 04:40:49 +03:00
Static middleware
## Usage
### Start using it
Download and install it:
```sh
2022-12-12 14:59:29 +03:00
go get git.internal/re/static
```
Import it in your code:
```go
2022-12-12 14:59:29 +03:00
import "git.internal/re/static"
```
2021-04-04 01:07:43 +03:00
### Canonical example
2022-08-24 00:23:00 +03:00
See the [example](_example)
```go
package main
import (
2022-12-12 14:59:29 +03:00
"git.internal/re/static"
"git.internal/re/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)
}
}
```