2020-11-19 01:50:34 +00:00
|
|
|
package server
|
|
|
|
|
2021-11-15 08:37:58 +00:00
|
|
|
const (
|
|
|
|
embeddedAssets = "public_html/"
|
|
|
|
swaggerAssets = embeddedAssets + "api/"
|
|
|
|
apiFile = "openapi.yml"
|
|
|
|
indexFile = "index.html"
|
|
|
|
logoFile = "logo.png"
|
|
|
|
)
|
|
|
|
|
|
|
|
var rootFiles = []string{"favicon.ico", "manifest.json", "robots.txt"}
|
2021-01-03 04:28:46 +00:00
|
|
|
|
2021-12-01 03:32:58 +00:00
|
|
|
const (
|
|
|
|
dev = "dev"
|
|
|
|
f = "false"
|
|
|
|
t = "true"
|
|
|
|
)
|
2021-08-05 04:02:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
`
|
2022-02-20 23:14:09 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
cspDefaultTemplate = "default-src 'self'; object-src 'none'; style-src 'self' 'nonce-%s'"
|
|
|
|
cspDefaultDevTemplate = "default-src 'self' 'unsafe-eval'; object-src 'none'; style-src 'self' 'nonce-%s'"
|
|
|
|
cspNoncePlaceholder = "${NONCE}"
|
|
|
|
)
|