docs/middleware/static.md
The Static middleware serves assets such as images, CSS, and JavaScript.
:::info
By default, it serves index.html when a directory is requested. Customize this behavior in the Config options.
:::
func New(root string, cfg ...Config) fiber.Handler
Import the package:
import(
"github.com/gofiber/fiber/v3"
"github.com/gofiber/fiber/v3/middleware/static"
)
app.Get("/*", static.New("./public"))
curl http://localhost:3000/hello.html
curl http://localhost:3000/css/style.css
Useapp.Use("/", static.New("./public"))
curl http://localhost:3000/hello.html
curl http://localhost:3000/css/style.css
app.Use("/static", static.New("./public/hello.html"))
curl http://localhost:3000/static # will show hello.html
curl http://localhost:3000/static/john/doe # will show hello.html
app.Get("/files*", static.New("", static.Config{
FS: os.DirFS("files"),
Browse: true,
}))
curl http://localhost:3000/files/css/style.css
curl http://localhost:3000/files/index.html
//go:embed path/to/files
var myfiles embed.FS
app.Get("/files*", static.New("", static.Config{
FS: myfiles,
Browse: true,
}))
curl http://localhost:3000/files/css/style.css
curl http://localhost:3000/files/index.html
app.Use("/web", static.New("", static.Config{
FS: os.DirFS("dist"),
}))
app.Get("/web*", func(c fiber.Ctx) error {
return c.SendFile("dist/index.html")
})
curl http://localhost:3000/web/css/style.css
curl http://localhost:3000/web/index.html
curl http://localhost:3000/web
:::caution
To define static routes using Get, append the wildcard (*) operator at the end of the route.
:::
| Property | Type | Description | Default |
|---|---|---|---|
| Next | func(fiber.Ctx) bool | Next defines a function to skip this middleware when it returns true. | nil |
| FS | fs.FS | FS is the file system to serve the static files from. |
You can use interfaces compatible with fs.FS like embed.FS, os.DirFS etc. | nil |
| Compress | bool | When set to true, the server tries minimizing CPU usage by caching compressed files. The middleware will compress the response using gzip, brotli, or zstd compression depending on the Accept-Encoding header.
This works differently than the github.com/gofiber/compression middleware. | false |
| ByteRange | bool | When set to true, enables byte range requests. | false |
| Browse | bool | When set to true, enables directory browsing. | false |
| Download | bool | When set to true, enables direct download. | false |
| IndexNames | []string | The names of the index files for serving a directory. | []string{"index.html"} |
| CacheDuration | time.Duration | Expiration duration for inactive file handlers.
Use a negative time.Duration to disable it. | 10 * time.Second |
| MaxAge | int | The value for the Cache-Control HTTP-header that is set on the file response. MaxAge is defined in seconds. | 0 |
| ModifyResponse | fiber.Handler | ModifyResponse defines a function that allows you to alter the response. | nil |
| NotFoundHandler | fiber.Handler | NotFoundHandler defines a function to handle when the path is not found. | nil |
When Download is enabled, the response includes a Content-Disposition header with the requested filename. Non-ASCII names use the filename* parameter as defined by RFC 6266 and RFC 8187.
:::info
You can set CacheDuration config property to -1 to disable caching.
:::
var ConfigDefault = Config{
IndexNames: []string{"index.html"},
CacheDuration: 10 * time.Second,
}