Static middleware
Go to file
Bo-Yi Wu a341909c87 update 1.9
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2017-08-27 09:49:44 +08:00
example fix: replace gopkg with github. (#1) 2017-03-10 20:47:16 -06:00
vendor remove vendor files. (#5) 2017-03-15 06:49:17 -05:00
.gitignore remove vendor files. (#5) 2017-03-15 06:49:17 -05:00
.travis.yml update 1.9 2017-08-27 09:49:44 +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
static.go fix: replace gopkg with github. (#1) 2017-03-10 20:47:16 -06:00
static_test.go fix: replace gopkg with github. (#1) 2017-03-10 20:47:16 -06: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")
}