Compare commits
3 Commits
1ccf2f03d8
...
f389799652
| Author | SHA1 | Date | |
|---|---|---|---|
| f389799652 | |||
| f9fbba0e8d | |||
| 60a26ca5c3 |
@@ -6,6 +6,7 @@
|
|||||||
locations."/" = {
|
locations."/" = {
|
||||||
root = pkgs.element-web.override {
|
root = pkgs.element-web.override {
|
||||||
conf = {
|
conf = {
|
||||||
|
default_server_name = "glia.club";
|
||||||
default_server_config = {
|
default_server_config = {
|
||||||
m.homeserver = {
|
m.homeserver = {
|
||||||
base_url = "https://chat.glia.club";
|
base_url = "https://chat.glia.club";
|
||||||
@@ -29,15 +30,22 @@
|
|||||||
default_widget_container_height = 280;
|
default_widget_container_height = 280;
|
||||||
default_country_code = "GB";
|
default_country_code = "GB";
|
||||||
show_labs_settings = true;
|
show_labs_settings = true;
|
||||||
features = {};
|
features = {
|
||||||
|
threadsActivityCentre = true;
|
||||||
|
feature_video_rooms = true;
|
||||||
|
feature_group_calls = true;
|
||||||
|
feature_element_call_video_rooms = true;
|
||||||
|
};
|
||||||
default_federate = false;
|
default_federate = false;
|
||||||
default_theme = "light";
|
default_theme = "light";
|
||||||
room_directory = {
|
room_directory = {
|
||||||
servers = ["glia.club"];
|
servers = ["glia.club"];
|
||||||
};
|
};
|
||||||
enable_presence_by_hs_url = {
|
enable_presence_by_hs_url = {
|
||||||
"https://glia.club" = false;
|
"https://glia.club" = true;
|
||||||
"https://chat.glia.club" = false;
|
"https://chat.glia.club" = true;
|
||||||
|
"https://matrix.org" = false;
|
||||||
|
"https://matrix-client.matrix.org" = false;
|
||||||
};
|
};
|
||||||
setting_defaults = {
|
setting_defaults = {
|
||||||
breadcrumbs = false;
|
breadcrumbs = false;
|
||||||
@@ -69,8 +77,8 @@
|
|||||||
location /config {
|
location /config {
|
||||||
add_header Cache-Control "no-cache";
|
add_header Cache-Control "no-cache";
|
||||||
}
|
}
|
||||||
location /modules {
|
location /modules/ {
|
||||||
alias /modules;
|
alias /modules/;
|
||||||
}
|
}
|
||||||
# redirect server error pages to the static page /50x.html
|
# redirect server error pages to the static page /50x.html
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -24,6 +24,11 @@
|
|||||||
|
|
||||||
allow_registration = true;
|
allow_registration = true;
|
||||||
registration_token_file = config.sops.secrets.tuwunelreg.path;
|
registration_token_file = config.sops.secrets.tuwunelreg.path;
|
||||||
|
|
||||||
|
well_known = {
|
||||||
|
client = "https://glia.club";
|
||||||
|
server = "glia.club:443";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -18,6 +18,48 @@
|
|||||||
static-auth-secret-file = config.sops.secrets.coturn-secret.path;
|
static-auth-secret-file = config.sops.secrets.coturn-secret.path;
|
||||||
cert = "/var/lib/caddy/.local/share/caddy/certificates/acme.zerossl.com-v2-dv90/turn.glia.club/turn.glia.club.crt";
|
cert = "/var/lib/caddy/.local/share/caddy/certificates/acme.zerossl.com-v2-dv90/turn.glia.club/turn.glia.club.crt";
|
||||||
pkey = "/var/lib/caddy/.local/share/caddy/certificates/acme.zerossl.com-v2-dv90/turn.glia.club/turn.glia.club.key";
|
pkey = "/var/lib/caddy/.local/share/caddy/certificates/acme.zerossl.com-v2-dv90/turn.glia.club/turn.glia.club.key";
|
||||||
|
extraConfig = ''
|
||||||
|
# VoIP traffic is all UDP. There is no reason to let users connect to arbitrary TCP endpoints via the relay.
|
||||||
|
no-tcp-relay
|
||||||
|
|
||||||
|
# don't let the relay ever try to connect to private IP address ranges within your network (if any)
|
||||||
|
# given the turn server is likely behind your firewall, remember to include any privileged public IPs too.
|
||||||
|
denied-peer-ip=10.0.0.0-10.255.255.255
|
||||||
|
denied-peer-ip=192.168.0.0-192.168.255.255
|
||||||
|
denied-peer-ip=172.16.0.0-172.31.255.255
|
||||||
|
|
||||||
|
# recommended additional local peers to block, to mitigate external access to internal services.
|
||||||
|
# https://www.enablesecurity.com/blog/slack-webrtc-turn-compromise-and-bug-bounty/#how-to-fix-an-open-turn-relay-to-address-this-vulnerability
|
||||||
|
# https://www.enablesecurity.com/blog/cve-2020-26262-bypass-of-coturns-access-control-protection/#further-concerns-what-else
|
||||||
|
no-multicast-peers
|
||||||
|
denied-peer-ip=0.0.0.0-0.255.255.255
|
||||||
|
denied-peer-ip=100.64.0.0-100.127.255.255
|
||||||
|
denied-peer-ip=127.0.0.0-127.255.255.255
|
||||||
|
denied-peer-ip=169.254.0.0-169.254.255.255
|
||||||
|
denied-peer-ip=192.0.0.0-192.0.0.255
|
||||||
|
denied-peer-ip=192.0.2.0-192.0.2.255
|
||||||
|
denied-peer-ip=192.88.99.0-192.88.99.255
|
||||||
|
denied-peer-ip=198.18.0.0-198.19.255.255
|
||||||
|
denied-peer-ip=198.51.100.0-198.51.100.255
|
||||||
|
denied-peer-ip=203.0.113.0-203.0.113.255
|
||||||
|
denied-peer-ip=240.0.0.0-255.255.255.255
|
||||||
|
denied-peer-ip=::1
|
||||||
|
denied-peer-ip=64:ff9b::-64:ff9b::ffff:ffff
|
||||||
|
denied-peer-ip=::ffff:0.0.0.0-::ffff:255.255.255.255
|
||||||
|
denied-peer-ip=100::-100::ffff:ffff:ffff:ffff
|
||||||
|
denied-peer-ip=2001::-2001:1ff:ffff:ffff:ffff:ffff:ffff:ffff
|
||||||
|
denied-peer-ip=2002::-2002:ffff:ffff:ffff:ffff:ffff:ffff:ffff
|
||||||
|
denied-peer-ip=fc00::-fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
|
||||||
|
denied-peer-ip=fe80::-febf:ffff:ffff:ffff:ffff:ffff:ffff:ffff
|
||||||
|
|
||||||
|
# special case the turn server itself so that client->TURN->TURN->client flows work
|
||||||
|
# this should be one of the turn server's listening IPs
|
||||||
|
allowed-peer-ip=10.0.0.1
|
||||||
|
|
||||||
|
# consider whether you want to limit the quota of relayed streams per user (or total) to avoid risk of DoS.
|
||||||
|
user-quota=12 # 4 streams per video call, so 12 streams = 3 simultaneous relayed calls per user.
|
||||||
|
total-quota=1200
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
services.matrix-tuwunel.settings = {
|
services.matrix-tuwunel.settings = {
|
||||||
global = {
|
global = {
|
||||||
|
|||||||
Reference in New Issue
Block a user