Added matrix.nederland.gay
parent
14265fb238
commit
6f7db2c336
|
@ -9,6 +9,7 @@
|
|||
./iceshrimp.nix
|
||||
./akkoma.nix
|
||||
./akkoma-media.nix
|
||||
./matrix.nix
|
||||
./trackmap.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
# Reqeusts SSL and adds the site to nginx
|
||||
services.nginx.virtualHosts."matrix.nederland.gay" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://192.168.178.243/";
|
||||
proxyWebsockets = true; # needed if you need to use WebSocket
|
||||
extraConfig =
|
||||
# required when the target is also TLS server with multiple hosts
|
||||
"proxy_ssl_server_name on;" +
|
||||
# required when the server wants to use HTTP Authentication
|
||||
"proxy_pass_header Authorization;"
|
||||
;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue