2020-11-19 01:50:34 +00:00
|
|
|
package server
|
|
|
|
|
2021-02-21 23:07:06 +00:00
|
|
|
const embeddedAssets = "public_html/"
|
|
|
|
const swaggerAssets = embeddedAssets + "api/"
|
2021-01-03 04:28:46 +00:00
|
|
|
const apiFile = "openapi.yml"
|
|
|
|
const indexFile = "index.html"
|
|
|
|
|
2020-11-19 01:50:34 +00:00
|
|
|
const dev = "dev"
|
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
|
|
|
|
`
|