2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// BaseDomain the base domain
|
|
|
|
var BaseDomain = "example.com:8080"
|
|
|
|
|
|
|
|
// LoginBaseURL the base URL of the login portal
|
2019-11-24 20:27:59 +00:00
|
|
|
var LoginBaseURL = fmt.Sprintf("https://login.%s", BaseDomain)
|
2019-11-02 14:32:58 +00:00
|
|
|
|
|
|
|
// 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
|
2019-11-24 20:27:59 +00:00
|
|
|
var HomeBaseURL = fmt.Sprintf("https://home.%s", BaseDomain)
|
|
|
|
|
|
|
|
// PublicBaseURL the base URL of the public domain
|
|
|
|
var PublicBaseURL = fmt.Sprintf("https://public.%s", BaseDomain)
|
|
|
|
|
|
|
|
// SecureBaseURL the base URL of the secure domain
|
|
|
|
var SecureBaseURL = fmt.Sprintf("https://secure.%s", BaseDomain)
|
|
|
|
|
|
|
|
// DevBaseURL the base URL of the dev domain
|
|
|
|
var DevBaseURL = fmt.Sprintf("https://dev.%s", BaseDomain)
|
|
|
|
|
|
|
|
// MX1MailBaseURL the base URL of the mx1.mail domain
|
|
|
|
var MX1MailBaseURL = fmt.Sprintf("https://mx1.mail.%s", BaseDomain)
|
|
|
|
|
|
|
|
// MX2MailBaseURL the base URL of the mx2.mail domain
|
|
|
|
var MX2MailBaseURL = fmt.Sprintf("https://mx2.mail.%s", BaseDomain)
|
|
|
|
|
|
|
|
// DuoBaseURL the base URL of the Duo configuration API
|
|
|
|
var DuoBaseURL = "https://duo.example.com"
|
|
|
|
|
|
|
|
// AutheliaBaseURL the base URL of Authelia service
|
2020-03-03 07:18:25 +00:00
|
|
|
var AutheliaBaseURL = "https://authelia.example.com:9091"
|