86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
package server
|
|
|
|
import (
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
const (
|
|
assetsRoot = "public_html"
|
|
assetsSwagger = assetsRoot + "/api"
|
|
|
|
fileOpenAPI = "openapi.yml"
|
|
fileIndexHTML = "index.html"
|
|
fileLogo = "logo.png"
|
|
)
|
|
|
|
var (
|
|
filesRoot = []string{"manifest.json", "robots.txt"}
|
|
filesSwagger = []string{
|
|
"favicon-16x16.png",
|
|
"favicon-32x32.png",
|
|
"index.css",
|
|
"oauth2-redirect.html",
|
|
"swagger-initializer.js",
|
|
"swagger-ui-bundle.js",
|
|
"swagger-ui-bundle.js.map",
|
|
"swagger-ui-es-bundle-core.js",
|
|
"swagger-ui-es-bundle-core.js.map",
|
|
"swagger-ui-es-bundle.js",
|
|
"swagger-ui-es-bundle.js.map",
|
|
"swagger-ui-standalone-preset.js",
|
|
"swagger-ui-standalone-preset.js.map",
|
|
"swagger-ui.css",
|
|
"swagger-ui.css.map",
|
|
"swagger-ui.js",
|
|
"swagger-ui.js.map",
|
|
}
|
|
|
|
// Directories excluded from the not found handler proceeding to the next() handler.
|
|
dirsHTTPServer = []struct {
|
|
name, prefix string
|
|
}{
|
|
{name: "/api", prefix: "/api/"},
|
|
{name: "/.well-known", prefix: "/.well-known/"},
|
|
{name: "/static", prefix: "/static/"},
|
|
{name: "/locales", prefix: "/locales/"},
|
|
}
|
|
)
|
|
|
|
const (
|
|
dev = "dev"
|
|
f = "false"
|
|
t = "true"
|
|
localhost = "localhost"
|
|
schemeHTTP = "http"
|
|
schemeHTTPS = "https"
|
|
)
|
|
|
|
var (
|
|
headerETag = []byte(fasthttp.HeaderETag)
|
|
headerIfNoneMatch = []byte(fasthttp.HeaderIfNoneMatch)
|
|
headerCacheControl = []byte(fasthttp.HeaderCacheControl)
|
|
|
|
headerValueCacheControlETaggedAssets = []byte("public, max-age=0, must-revalidate")
|
|
)
|
|
|
|
const healthCheckEnv = `# Written by Authelia Process
|
|
X_AUTHELIA_HEALTHCHECK=1
|
|
X_AUTHELIA_HEALTHCHECK_SCHEME=%s
|
|
X_AUTHELIA_HEALTHCHECK_HOST=%s
|
|
X_AUTHELIA_HEALTHCHECK_PORT=%d
|
|
X_AUTHELIA_HEALTHCHECK_PATH=%s
|
|
`
|
|
|
|
const (
|
|
tmplCSPSwagger = "default-src 'self'; img-src 'self' https://validator.swagger.io data:; object-src 'none'; script-src 'self' 'unsafe-inline' 'nonce-%s'; style-src 'self' 'nonce-%s'; base-uri 'self'"
|
|
)
|
|
|
|
const (
|
|
connNonTLS = "non-TLS"
|
|
connTLS = "TLS"
|
|
)
|
|
|
|
const (
|
|
fmtLogServerInit = "Initializing %s for %s connections on '%s' path '%s'"
|
|
)
|