mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
10 lines
190 B
Go
10 lines
190 B
Go
|
//go:build !dev
|
||
|
// +build !dev
|
||
|
|
||
|
package http
|
||
|
|
||
|
// global headers to append to every response
|
||
|
var globalHeaders = map[string]string{
|
||
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
||
|
}
|