2021-06-18 07:15:52 -04:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
2014-08-31 11:06:39 -04: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 04:39:35 -04:00
|
|
|
from ._base import RootConfig
|
2021-04-19 14:16:34 -04:00
|
|
|
from .account_validity import AccountValidityConfig
|
2016-02-23 08:22:07 -05:00
|
|
|
from .api import ApiConfig
|
2015-03-31 04:22:31 -04:00
|
|
|
from .appservice import AppServiceConfig
|
2020-12-18 07:33:57 -05:00
|
|
|
from .auth import AuthConfig
|
2020-05-11 13:45:23 -04:00
|
|
|
from .cache import CacheConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .captcha import CaptchaConfig
|
2015-10-07 09:45:57 -04:00
|
|
|
from .cas import CasConfig
|
2021-04-20 14:55:20 -04:00
|
|
|
from .consent import ConsentConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .database import DatabaseConfig
|
|
|
|
from .emailconfig import EmailConfig
|
2021-01-27 07:41:24 -05:00
|
|
|
from .experimental import ExperimentalConfig
|
2020-07-10 13:26:36 -04:00
|
|
|
from .federation import FederationConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .groups import GroupsConfig
|
2021-04-20 14:55:20 -04:00
|
|
|
from .jwt import JWTConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .key import KeyConfig
|
|
|
|
from .logger import LoggingConfig
|
|
|
|
from .metrics import MetricsConfig
|
2021-06-18 07:15:52 -04:00
|
|
|
from .modules import ModulesConfig
|
2021-08-31 18:37:07 -04:00
|
|
|
from .oembed import OembedConfig
|
2021-04-20 14:55:20 -04:00
|
|
|
from .oidc import OIDCConfig
|
2016-10-03 05:27:10 -04:00
|
|
|
from .password_auth_providers import PasswordAuthProviderConfig
|
2017-06-23 09:15:18 -04:00
|
|
|
from .push import PushConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .ratelimiting import RatelimitConfig
|
2020-04-22 08:07:41 -04:00
|
|
|
from .redis import RedisConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .registration import RegistrationConfig
|
|
|
|
from .repository import ContentRepositoryConfig
|
2021-10-15 10:30:48 -04:00
|
|
|
from .retention import RetentionConfig
|
2020-06-10 12:44:34 -04:00
|
|
|
from .room import RoomConfig
|
2018-10-17 11:14:04 -04:00
|
|
|
from .room_directory import RoomDirectoryConfig
|
2021-04-20 14:55:20 -04:00
|
|
|
from .saml2 import SAML2Config
|
2018-07-09 02:09:20 -04:00
|
|
|
from .server import ServerConfig
|
2021-04-20 14:55:20 -04:00
|
|
|
from .server_notices import ServerNoticesConfig
|
2017-09-26 14:20:23 -04:00
|
|
|
from .spam_checker import SpamCheckerConfig
|
2020-03-02 11:36:32 -05:00
|
|
|
from .sso import SSOConfig
|
2019-05-21 12:36:50 -04:00
|
|
|
from .stats import StatsConfig
|
2019-06-12 05:31:37 -04:00
|
|
|
from .third_party_event_rules import ThirdPartyRulesConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .tls import TlsConfig
|
2019-07-11 05:36:03 -04:00
|
|
|
from .tracer import TracerConfig
|
2017-11-29 11:46:45 -05:00
|
|
|
from .user_directory import UserDirectoryConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .voip import VoipConfig
|
|
|
|
from .workers import WorkerConfig
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-07-08 06:35:46 -04:00
|
|
|
|
2019-10-10 04:39:35 -04:00
|
|
|
class HomeServerConfig(RootConfig):
|
|
|
|
|
|
|
|
config_classes = [
|
2021-06-18 07:15:52 -04:00
|
|
|
ModulesConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
ServerConfig,
|
2021-10-15 10:30:48 -04:00
|
|
|
RetentionConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
TlsConfig,
|
2020-07-10 13:26:36 -04:00
|
|
|
FederationConfig,
|
2020-05-11 13:45:23 -04:00
|
|
|
CacheConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
DatabaseConfig,
|
|
|
|
LoggingConfig,
|
|
|
|
RatelimitConfig,
|
|
|
|
ContentRepositoryConfig,
|
2021-08-31 18:37:07 -04:00
|
|
|
OembedConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
CaptchaConfig,
|
|
|
|
VoipConfig,
|
|
|
|
RegistrationConfig,
|
2021-04-19 14:16:34 -04:00
|
|
|
AccountValidityConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
MetricsConfig,
|
|
|
|
ApiConfig,
|
|
|
|
AppServiceConfig,
|
|
|
|
KeyConfig,
|
|
|
|
SAML2Config,
|
2020-05-08 08:30:40 -04:00
|
|
|
OIDCConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
CasConfig,
|
2020-03-02 11:36:32 -05:00
|
|
|
SSOConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
JWTConfig,
|
2020-12-18 07:33:57 -05:00
|
|
|
AuthConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
EmailConfig,
|
|
|
|
PasswordAuthProviderConfig,
|
|
|
|
PushConfig,
|
|
|
|
SpamCheckerConfig,
|
2020-06-10 12:44:34 -04:00
|
|
|
RoomConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
GroupsConfig,
|
|
|
|
UserDirectoryConfig,
|
|
|
|
ConsentConfig,
|
|
|
|
StatsConfig,
|
|
|
|
ServerNoticesConfig,
|
|
|
|
RoomDirectoryConfig,
|
|
|
|
ThirdPartyRulesConfig,
|
|
|
|
TracerConfig,
|
2020-07-29 18:22:13 -04:00
|
|
|
WorkerConfig,
|
2020-04-22 08:07:41 -04:00
|
|
|
RedisConfig,
|
2021-05-24 08:57:14 -04:00
|
|
|
ExperimentalConfig,
|
2019-10-10 04:39:35 -04:00
|
|
|
]
|