mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
20 lines
365 B
Nix
20 lines
365 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts."irc.kittywit.ch" = {
|
|
locations = {
|
|
"/" = { root = pkgs.glowing-bear; };
|
|
"^~ /weechat" = {
|
|
proxyPass = "http://127.0.0.1:9000";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
domains.kittywitch_irc = {
|
|
network = "internet";
|
|
domain = "irc";
|
|
type = "cname";
|
|
};
|
|
|
|
}
|