2021-06-18 13:15:52 +02:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
2014-08-31 17:06:39 +02:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2019-10-10 10:39:35 +02:00
|
|
|
from ._base import RootConfig
|
2021-04-19 20:16:34 +02:00
|
|
|
from .account_validity import AccountValidityConfig
|
2016-02-23 14:22:07 +01:00
|
|
|
from .api import ApiConfig
|
2015-03-31 10:22:31 +02:00
|
|
|
from .appservice import AppServiceConfig
|
2020-12-18 13:33:57 +01:00
|
|
|
from .auth import AuthConfig
|
2020-05-11 19:45:23 +02:00
|
|
|
from .cache import CacheConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .captcha import CaptchaConfig
|
2015-10-07 15:45:57 +02:00
|
|
|
from .cas import CasConfig
|
2021-04-20 20:55:20 +02:00
|
|
|
from .consent import ConsentConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .database import DatabaseConfig
|
|
|
|
from .emailconfig import EmailConfig
|
2021-01-27 13:41:24 +01:00
|
|
|
from .experimental import ExperimentalConfig
|
2020-07-10 19:26:36 +02:00
|
|
|
from .federation import FederationConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .groups import GroupsConfig
|
2021-04-20 20:55:20 +02:00
|
|
|
from .jwt import JWTConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .key import KeyConfig
|
|
|
|
from .logger import LoggingConfig
|
|
|
|
from .metrics import MetricsConfig
|
2021-06-18 13:15:52 +02:00
|
|
|
from .modules import ModulesConfig
|
2021-09-01 00:37:07 +02:00
|
|
|
from .oembed import OembedConfig
|
2021-04-20 20:55:20 +02:00
|
|
|
from .oidc import OIDCConfig
|
2016-10-03 11:27:10 +02:00
|
|
|
from .password_auth_providers import PasswordAuthProviderConfig
|
2017-06-23 15:15:18 +02:00
|
|
|
from .push import PushConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .ratelimiting import RatelimitConfig
|
2020-04-22 14:07:41 +02:00
|
|
|
from .redis import RedisConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .registration import RegistrationConfig
|
|
|
|
from .repository import ContentRepositoryConfig
|
2021-10-15 16:30:48 +02:00
|
|
|
from .retention import RetentionConfig
|
2020-06-10 18:44:34 +02:00
|
|
|
from .room import RoomConfig
|
2018-10-17 17:14:04 +02:00
|
|
|
from .room_directory import RoomDirectoryConfig
|
2021-04-20 20:55:20 +02:00
|
|
|
from .saml2 import SAML2Config
|
2018-07-09 08:09:20 +02:00
|
|
|
from .server import ServerConfig
|
2021-04-20 20:55:20 +02:00
|
|
|
from .server_notices import ServerNoticesConfig
|
2017-09-26 20:20:23 +02:00
|
|
|
from .spam_checker import SpamCheckerConfig
|
2020-03-02 17:36:32 +01:00
|
|
|
from .sso import SSOConfig
|
2019-05-21 18:36:50 +02:00
|
|
|
from .stats import StatsConfig
|
2019-06-12 11:31:37 +02:00
|
|
|
from .third_party_event_rules import ThirdPartyRulesConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .tls import TlsConfig
|
2019-07-11 11:36:03 +02:00
|
|
|
from .tracer import TracerConfig
|
2017-11-29 17:46:45 +01:00
|
|
|
from .user_directory import UserDirectoryConfig
|
2018-07-09 08:09:20 +02:00
|
|
|
from .voip import VoipConfig
|
|
|
|
from .workers import WorkerConfig
|
2014-08-31 17:06:39 +02:00
|
|
|
|
2015-07-08 12:35:46 +02:00
|
|
|
|
2019-10-10 10:39:35 +02:00
|
|
|
class HomeServerConfig(RootConfig):
|
|
|
|
|
|
|
|
config_classes = [
|
2021-06-18 13:15:52 +02:00
|
|
|
ModulesConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
ServerConfig,
|
2021-10-15 16:30:48 +02:00
|
|
|
RetentionConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
TlsConfig,
|
2020-07-10 19:26:36 +02:00
|
|
|
FederationConfig,
|
2020-05-11 19:45:23 +02:00
|
|
|
CacheConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
DatabaseConfig,
|
|
|
|
LoggingConfig,
|
|
|
|
RatelimitConfig,
|
|
|
|
ContentRepositoryConfig,
|
2021-09-01 00:37:07 +02:00
|
|
|
OembedConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
CaptchaConfig,
|
|
|
|
VoipConfig,
|
|
|
|
RegistrationConfig,
|
2021-04-19 20:16:34 +02:00
|
|
|
AccountValidityConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
MetricsConfig,
|
|
|
|
ApiConfig,
|
|
|
|
AppServiceConfig,
|
|
|
|
KeyConfig,
|
|
|
|
SAML2Config,
|
2020-05-08 14:30:40 +02:00
|
|
|
OIDCConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
CasConfig,
|
2020-03-02 17:36:32 +01:00
|
|
|
SSOConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
JWTConfig,
|
2020-12-18 13:33:57 +01:00
|
|
|
AuthConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
EmailConfig,
|
|
|
|
PasswordAuthProviderConfig,
|
|
|
|
PushConfig,
|
|
|
|
SpamCheckerConfig,
|
2020-06-10 18:44:34 +02:00
|
|
|
RoomConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
GroupsConfig,
|
|
|
|
UserDirectoryConfig,
|
|
|
|
ConsentConfig,
|
|
|
|
StatsConfig,
|
|
|
|
ServerNoticesConfig,
|
|
|
|
RoomDirectoryConfig,
|
|
|
|
ThirdPartyRulesConfig,
|
|
|
|
TracerConfig,
|
2020-07-30 00:22:13 +02:00
|
|
|
WorkerConfig,
|
2020-04-22 14:07:41 +02:00
|
|
|
RedisConfig,
|
2021-05-24 14:57:14 +02:00
|
|
|
ExperimentalConfig,
|
2019-10-10 10:39:35 +02:00
|
|
|
]
|