@@ -3212,6 +3212,21 @@ func main() {
3212
3212
http .Handle ("/css/fontawesome-webfont.woff2" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3213
3213
http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "fontawesome-webfont-4.7.0.woff2" ))
3214
3214
})))
3215
+ http .Handle ("/fonts/glyphicons-halflings-regular.eot" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3216
+ http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "glyphicons-halflings-regular.eot" ))
3217
+ })))
3218
+ http .Handle ("/fonts/glyphicons-halflings-regular.svg" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3219
+ http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "glyphicons-halflings-regular.svg" ))
3220
+ })))
3221
+ http .Handle ("/fonts/glyphicons-halflings-regular.ttf" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3222
+ http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "glyphicons-halflings-regular.ttf" ))
3223
+ })))
3224
+ http .Handle ("/fonts/glyphicons-halflings-regular.woff" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3225
+ http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "glyphicons-halflings-regular.woff" ))
3226
+ })))
3227
+ http .Handle ("/fonts/glyphicons-halflings-regular.woff2" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
3228
+ http .ServeFile (w , r , filepath .Join (com .Conf .Web .BaseDir , "webui" , "fonts" , "glyphicons-halflings-regular.woff2" ))
3229
+ })))
3215
3230
3216
3231
// Javascript
3217
3232
http .Handle ("/js/angular-1.8.2.min.js" , gz .GzipHandler (logReq (func (w http.ResponseWriter , r * http.Request ) {
0 commit comments