Static middleware
Go to file
田欧 c1cdf9c9ec
Merge pull request #13 from solarhell/master
Fix go module issue.
2019-05-11 20:47:41 +08:00
example fix: replace gopkg with github. (#1) 2017-03-10 20:47:16 -06:00
.gitignore remove vendor files. (#5) 2017-03-15 06:49:17 -05:00
.travis.yml Update .travis.yml 2019-03-01 14:25:46 +08:00
LICENSE Initial commit 2016-12-13 09:40:49 +08:00
README.md feat: add embedmd (#3) 2017-03-11 04:37:20 -06:00
go.mod Fix go module issue. 2019-05-09 15:18:12 +08:00
go.sum Fix go module issue. 2019-05-09 15:18:12 +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")
}