browser-caching: enable browser caching for WebUI

This commit is contained in:
Krishna Srinivas
2016-02-05 03:27:56 +05:30
parent b49f21ec82
commit a344e7713a
2 changed files with 21 additions and 3 deletions

View File

@@ -55,9 +55,10 @@ type WebAPI struct {
func getWebAPIHandler(web *WebAPI) http.Handler {
var mwHandlers = []MiddlewareHandler{
TimeValidityHandler, // Validate time.
AuthHandler, // Authentication handler for verifying tokens.
CorsHandler, // CORS added only for testing purposes.
setCacheControlHandler, // Adds Cache-Control header
TimeValidityHandler, // Validate time.
AuthHandler, // Authentication handler for verifying tokens.
CorsHandler, // CORS added only for testing purposes.
}
if web.AccessLog {
mwHandlers = append(mwHandlers, AccessLogHandler)