Static middleware
Go to file
Bo-Yi Wu cf3607d099 Add 1.8 testing and remove 1.5.x
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2017-03-11 10:43:26 +08:00
example fix import path. 2016-12-13 10:06:25 +08:00
.gitignore initital. 2016-12-13 10:03:34 +08:00
.travis.yml Add 1.8 testing and remove 1.5.x 2017-03-11 10:43:26 +08:00
LICENSE Initial commit 2016-12-13 09:40:49 +08:00
README.md [ci skip] update readme. 2016-12-13 10:13:15 +08:00
static.go fix import path. 2016-12-13 10:06:25 +08:00
static_test.go fix import path. 2016-12-13 10:06:25 +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"

	"gopkg.in/gin-gonic/gin.v1"
)

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