Static middleware
Go to file
thinkerou efaf9c28b2
Merge pull request #37 from gin-contrib/dependabot/go_modules/github.com/stretchr/testify-1.8.0
chore(deps): bump github.com/stretchr/testify from 1.7.5 to 1.8.0
2022-07-05 09:57:08 +08:00
.github chore(deps): bump goreleaser/goreleaser-action from 2 to 3 2022-05-23 20:50:35 +00:00
_example chore: fix lint 2021-10-02 21:08:24 +08:00
.gitignore remove vendor files. (#5) 2017-03-15 06:49:17 -05:00
.golangci.yml chore(lint): add golang lint config 2022-01-02 14:21:40 +08:00
.goreleaser.yaml chore(CD): enable goreleaser config. 2022-05-01 17:11:15 +08:00
LICENSE Initial commit 2016-12-13 09:40:49 +08:00
README.md docs: add github actions badge 2021-10-02 21:10:58 +08:00
go.mod chore(deps): bump github.com/stretchr/testify from 1.7.5 to 1.8.0 2022-07-04 20:07:01 +00:00
go.sum chore(deps): bump github.com/stretchr/testify from 1.7.5 to 1.8.0 2022-07-04 20:07:01 +00:00
static.go fix: import order. 2018-08-27 10:51:13 +08:00
static_test.go chore(lint): add golang lint config 2022-01-02 14:21:40 +08:00

README.md

static middleware

Run Tests codecov Go Report Card GoDoc

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)
  }
}