30 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  services.nginx.virtualHosts."nekover.se" = {
 | 
						|
    forceSSL = true;
 | 
						|
    enableACME = true;
 | 
						|
    listen = [{
 | 
						|
      addr = "localhost";
 | 
						|
      port = 8443;
 | 
						|
      ssl = true;
 | 
						|
      extraParameters = ["proxy_protocol"];
 | 
						|
    }];
 | 
						|
    locations."/.well-known/matrix/server" = {
 | 
						|
      return = "200 '{\"m.server\": \"matrix.nekover.se:443\"}'";
 | 
						|
      extraConfig = ''
 | 
						|
        add_header Content-Type application/json;
 | 
						|
      '';
 | 
						|
    };
 | 
						|
    locations."/.well-known/matrix/client" = {
 | 
						|
      return = "200 '{\"m.homeserver\": {\"base_url\": \"https://matrix.nekover.se\"}, \"m.identity_server\": {\"base_url\": \"https://vector.im\"}, \"org.matrix.msc3575.proxy\": {\"url\": \"https://matrix.nekover.se\"},\"org.matrix.msc2965.authentication\": {\"issuer\": \"https://mas.nekover.se\", \"account\": \"https://mas.nekover.se/account\"}, \"org.matrix.msc4143.rtc_foci\": [{\"type\": \"livekit\", \"livekit_service_url\": \"https://matrix-rtc.nekover.se/livekit/jwt\"}, {\"type\": \"nextgen_new_foci_type\", \"props_for_nextgen_foci\": \"val\"}]}'";
 | 
						|
      extraConfig = ''
 | 
						|
        default_type application/json;
 | 
						|
        add_header Access-Control-Allow-Origin *;
 | 
						|
      '';
 | 
						|
    };
 | 
						|
    extraConfig = ''
 | 
						|
      set_real_ip_from 127.0.0.1;
 | 
						|
      real_ip_header proxy_protocol;
 | 
						|
    '';
 | 
						|
  };
 | 
						|
}
 |