2014-04-26 09:18:56 +00:00
|
|
|
package StaticFiles
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
var (
|
2015-06-17 15:44:52 +00:00
|
|
|
senderName LM.Sender = `System::StaticFiles` // This is the name for logging event from this package
|
|
|
|
startFile4Map2Root string = `index.html` // The default filename in case of mapping static files to the root
|
|
|
|
logStaticFileRequests bool = false // Logging each access?
|
|
|
|
zipData []byte = nil // The in-memory cache of the data
|
2014-04-26 09:18:56 +00:00
|
|
|
)
|