mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-01 09:37:18 +00:00
dettlaff
4cd90d0c93
Co-authored-by: nhnn <nhnn@disroot.org> Co-authored-by: Inex Code <inex.code@selfprivacy.org> Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api/pulls/120 Co-authored-by: dettlaff <dettlaff@riseup.net> Co-committed-by: dettlaff <dettlaff@riseup.net>
23 lines
407 B
Python
23 lines
407 B
Python
DEFAULT_SUBDOMAINS = {
|
|
"bitwarden": "password",
|
|
"gitea": "git",
|
|
"jitsi-meet": "meet",
|
|
"simple-nixos-mailserver": "",
|
|
"nextcloud": "cloud",
|
|
"ocserv": "vpn",
|
|
"pleroma": "social",
|
|
"roundcube": "roundcube",
|
|
"testservice": "test",
|
|
"monitoring": "",
|
|
}
|
|
|
|
RESERVED_SUBDOMAINS = [
|
|
"admin",
|
|
"administrator",
|
|
"api",
|
|
"auth",
|
|
"user",
|
|
"users",
|
|
"ntfy",
|
|
]
|