Static middleware
Go to file
re 1fc8ba29a0 repo fix 2022-12-12 15:02:36 +03:00
.github chore: Add go 1.19 and upgrade lint version to v1.49 2022-08-29 21:17:51 +08:00
_example Update '_example/simple/example.go' 2022-12-12 14:58:10 +03: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 Update 'README.md' 2022-12-12 14:59:29 +03:00
go.mod repo fix 2022-12-12 15:02:36 +03:00
go.sum repo fix 2022-12-12 15:02:36 +03:00
static.go Update 'static.go' 2022-12-12 14:58:51 +03:00
static_test.go Update 'static_test.go' 2022-12-12 14:59:05 +03:00

README.md

static middleware

Run Tests codecov Go Report Card GoDoc

Static middleware

Usage

Start using it

Download and install it:

go get git.internal/re/static

Import it in your code:

import "git.internal/re/static"

Canonical example

See the example

package main

import (
  "git.internal/re/static"
  "git.internal/re/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)
  }
}