Set up a working conduwuit server #2

Merged
Ittihadyya merged 22 commits from conduit into trunk 2025-01-13 19:24:42 +02:00
3 changed files with 14 additions and 2 deletions
Showing only changes of commit cc857fdab3 - Show all commits

View file

@ -54,6 +54,7 @@
vlc vlc
signal-desktop signal-desktop
discord discord
element-desktop
obsidian obsidian
mumble mumble
# calibre # still borked apparently, what the hell # still!!! # calibre # still borked apparently, what the hell # still!!!

View file

@ -14,11 +14,18 @@
} }
} }
https://collective-conciousness.monster { https://collective-conciousness.monster, http://collective-conciousness.monster {
encode zstd gzip encode zstd gzip
header { header {
Strict-Transport-Security "max-age=31536001; includeSubdomains; preload" Strict-Transport-Security "max-age=31536001; includeSubdomains; preload"
} }
#reverse_proxy /_matrix* 10.24.1.4:6167
# respond /.well-known* {
# body {"m.server":"extreme-mediumvolu.me:443"}
# close
# }
root * /var/www/public root * /var/www/public
file_server { file_server {
precompressed zstd br gzip precompressed zstd br gzip
@ -57,6 +64,6 @@ https://grf.collective-conciousness.monster {
} }
http://matrix.collective-conciousness.monter, https://matrix.collective-conciousness.monster, matrix.collective-conciousness.monster, matrix.collective-conciousness.monster:8448 { http://matrix.collective-conciousness.monster, https://matrix.collective-conciousness.monster, matrix.collective-conciousness.monster, matrix.collective-conciousness.monster:8448, collective-conciousness.monster:8448 {
reverse_proxy 10.24.1.4:7893 reverse_proxy 10.24.1.4:7893
} }

View file

@ -13,6 +13,10 @@
max_request_size = 1024 * 1024 * 1024; max_request_size = 1024 * 1024 * 1024;
address = ["0.0.0.0"]; address = ["0.0.0.0"];
port = [7893]; port = [7893];
well-known = {
client = "https://matrix.collective-conciousness.monster";
server = "collective-conciousness.monster:8448";
};
# database_path = lib.mkForce "/var/services/conduwuit/"; # database_path = lib.mkForce "/var/services/conduwuit/";
}; };
}; };