mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
22 lines
685 B
Go
22 lines
685 B
Go
package suites
|
|
|
|
import "fmt"
|
|
|
|
// BaseDomain the base domain
|
|
var BaseDomain = "example.com:8080"
|
|
|
|
// LoginBaseURL the base URL of the login portal
|
|
var LoginBaseURL = fmt.Sprintf("https://login.%s/#/", BaseDomain)
|
|
|
|
// SingleFactorBaseURL the base URL of the singlefactor domain
|
|
var SingleFactorBaseURL = fmt.Sprintf("https://singlefactor.%s", BaseDomain)
|
|
|
|
// AdminBaseURL the base URL of the admin domain
|
|
var AdminBaseURL = fmt.Sprintf("https://admin.%s", BaseDomain)
|
|
|
|
// MailBaseURL the base URL of the mail domain
|
|
var MailBaseURL = fmt.Sprintf("https://mail.%s", BaseDomain)
|
|
|
|
// HomeBaseURL the base URL of the home domain
|
|
var HomeBaseURL = fmt.Sprintf("https://home.%s/", BaseDomain)
|