Infini-OPTIPLEX: transfer services to Infini-DL360

This commit is contained in:
Infinidoge 2024-05-05 19:20:56 -04:00
parent 253c57dd8f
commit a9ccc13825
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
9 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."thelounge.inx.moe" = config.common.nginx.ssl // {
locations."/" = {
proxyPass = "http://localhost:${toString config.services.thelounge.port}";
};
};
services.thelounge = {
enable = true;
dataDir = "/srv/thelounge";
plugins = with pkgs.theLoungePlugins; [
themes.zenburn-monospace
themes.dracula
themes.discordapp
];
port = 9786;
extraConfig = {
reverseProxy = true;
};
};
}