Static middleware
Go to file
Bo-Yi Wu 95ad8995a1 chore: update gin to v1.7.4
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2021-10-02 21:06:34 +08:00
.github/workflows chore: switch travis to github actions. 2021-10-02 20:45:43 +08:00
_example chore: rename example to _example 2021-04-04 06:07:43 +08:00
.gitignore remove vendor files. (#5) 2017-03-15 06:49:17 -05:00
LICENSE Initial commit 2016-12-13 09:40:49 +08:00
README.md chore: rename example to _example 2021-04-04 06:07:43 +08:00
go.mod chore: update gin to v1.7.4 2021-10-02 21:06:34 +08:00
go.sum chore: update gin to v1.7.4 2021-10-02 21:06:34 +08:00
static.go fix: import order. 2018-08-27 10:51:13 +08:00
static_test.go fix: import order. 2018-08-27 10:51:13 +08:00

README.md

static middleware

Build Status 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
	r.Run(":8080")
}