mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
chore: merge remote-tracking branch 'refs/remotes/origin/master'
This commit is contained in:
commit
5f17dfba90
2 changed files with 52 additions and 0 deletions
17
modules/services/jitsi-meet.nix
Normal file
17
modules/services/jitsi-meet.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.jitsi-meet = {
|
||||||
|
enable = true;
|
||||||
|
hostName = "meet.liv.town";
|
||||||
|
config = {
|
||||||
|
prejoinPageEnabled = true;
|
||||||
|
disableModeratorIndicator = true;
|
||||||
|
};
|
||||||
|
interfaceConfig = {
|
||||||
|
SHOW_JITSI_WATERMARK = false;
|
||||||
|
};
|
||||||
|
jibri.enable = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.jitsi-videobridge.openFirewall = true;
|
||||||
|
}
|
||||||
35
modules/services/radicale.nix
Normal file
35
modules/services/radicale.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.radicale = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
server.hosts = [ "0.0.0.0:5232" ];
|
||||||
|
auth = {
|
||||||
|
type = "htpasswd";
|
||||||
|
htpasswd_filename = "/home/liv/radicaleusers";
|
||||||
|
htpasswd_encryption = "bcrypt";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# services.nginx = {
|
||||||
|
# enable = true;
|
||||||
|
# recommendedProxySettings = true;
|
||||||
|
# recommendedTlsSettings = true;
|
||||||
|
# virtualHosts = {
|
||||||
|
# "calendar.liv.town" = {
|
||||||
|
# forceSSL = true;
|
||||||
|
# enableACME = true;
|
||||||
|
# # locations."/radicale/" = {
|
||||||
|
# locations."/" = {
|
||||||
|
# proxyPass = "http://127.0.0.1:5232/";
|
||||||
|
# extraConfig = ''
|
||||||
|
# # proxy_set_header X-Script-Name /radicale;
|
||||||
|
# proxy_set_header X-Script-Name /;
|
||||||
|
# proxy_pass_header Authorization;
|
||||||
|
# '';
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue