Fix import of matrix appservice registration files
This commit is contained in:
parent
0a3bcc27ad
commit
134be027e2
|
@ -26,7 +26,14 @@ in {
|
||||||
dns_cache.enabled = true;
|
dns_cache.enabled = true;
|
||||||
};
|
};
|
||||||
# HACK Inherit postgres connection string for the rest of the DBs
|
# HACK Inherit postgres connection string for the rest of the DBs
|
||||||
app_service_api = { inherit database; };
|
app_service_api = {
|
||||||
|
inherit database;
|
||||||
|
config_files = [
|
||||||
|
"/var/lib/matrix-as-facebook/facebook-registration.yaml"
|
||||||
|
"/var/lib/matrix-as-signal/signal-registration.yaml"
|
||||||
|
"/var/lib/matrix-as-telegram/telegram-registration.yaml"
|
||||||
|
];
|
||||||
|
};
|
||||||
media_api = { inherit database; };
|
media_api = { inherit database; };
|
||||||
room_server = { inherit database; };
|
room_server = { inherit database; };
|
||||||
push_server = { inherit database; };
|
push_server = { inherit database; };
|
||||||
|
@ -56,7 +63,6 @@ in {
|
||||||
homeserver = "dendrite";
|
homeserver = "dendrite";
|
||||||
homeserverDomain = "coolneng.duckdns.org";
|
homeserverDomain = "coolneng.duckdns.org";
|
||||||
homeserverURL = "https://matrix.coolneng.duckdns.org";
|
homeserverURL = "https://matrix.coolneng.duckdns.org";
|
||||||
addRegistrationFiles = true;
|
|
||||||
services = {
|
services = {
|
||||||
telegram = {
|
telegram = {
|
||||||
port = 8118;
|
port = 8118;
|
||||||
|
|
Loading…
Reference in New Issue