mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-09 20:53:10 +00:00
22 lines
385 B
Python
22 lines
385 B
Python
|
DEFAULT_SUBDOMAINS = {
|
||
|
"bitwarden": "password",
|
||
|
"gitea": "git",
|
||
|
"jitsi-meet": "meet",
|
||
|
"simple-nixos-mailserver": "",
|
||
|
"nextcloud": "cloud",
|
||
|
"ocserv": "vpn",
|
||
|
"pleroma": "social",
|
||
|
"roundcube": "roundcube",
|
||
|
"testservice": "test",
|
||
|
}
|
||
|
|
||
|
RESERVED_SUBDOMAINS = [
|
||
|
"admin",
|
||
|
"administrator",
|
||
|
"api",
|
||
|
"auth",
|
||
|
"user",
|
||
|
"users",
|
||
|
"ntfy",
|
||
|
]
|