pvv-nixos-config/modules/grzegorz.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
2.2 KiB
Nix
Raw Normal View History

2023-09-03 01:06:48 +02:00
{config, lib, pkgs, ...}:
let
2024-10-19 23:29:54 +02:00
grg = config.services.greg-ng;
2023-09-03 01:06:48 +02:00
grgw = config.services.grzegorz-webui;
in {
2024-10-19 23:29:54 +02:00
services.greg-ng = {
enable = true;
settings.host = "localhost";
settings.port = 31337;
enableSway = true;
enablePipewire = true;
2023-09-03 01:06:48 +02:00
};
2024-10-19 23:29:54 +02:00
services.grzegorz-webui = {
enable = true;
listenAddr = "localhost";
listenPort = 42069;
listenWebsocketPort = 42042;
2025-01-11 19:52:03 +01:00
hostName = "georg-old.pvv.ntnu.no";
apiBase = "http://georg-backend.pvv.ntnu.no/api";
};
services.gergle = {
enable = true;
virtualHost = config.networking.fqdn;
2024-10-19 23:29:54 +02:00
};
2023-09-03 01:06:48 +02:00
services.nginx.enable = true;
2025-01-11 19:52:03 +01:00
services.nginx.virtualHosts = {
${config.networking.fqdn} = {
forceSSL = true;
enableACME = true;
kTLS = true;
serverAliases = [
"${config.networking.hostName}.pvv.org"
];
extraConfig = ''
allow 129.241.210.128/25;
allow 2001:700:300:1900::/64;
deny all;
'';
2023-09-03 01:06:48 +02:00
};
2025-01-11 19:52:03 +01:00
"georg-backend.pvv.ntnu.no" = {
forceSSL = true;
enableACME = true;
kTLS = true;
serverAliases = [
"georg-backend.pvv.org"
];
extraConfig = ''
allow 129.241.210.128/25;
allow 2001:700:300:1900::/64;
deny all;
'';
locations."/" = {
proxyPass = "http://${grg.settings.host}:${toString grg.settings.port}";
proxyWebsockets = true;
};
2023-09-03 01:06:48 +02:00
};
2025-01-11 19:52:03 +01:00
"georg-old.pvv.ntnu.no" = {
forceSSL = true;
enableACME = true;
kTLS = true;
serverAliases = [
"georg-old.pvv.org"
];
extraConfig = ''
allow 129.241.210.128/25;
allow 2001:700:300:1900::/64;
deny all;
'';
locations."/" = {
proxyPass = "http://${grgw.listenAddr}:${toString grgw.listenPort}";
};
# https://github.com/rawpython/remi/issues/216
locations."/websocket" = {
proxyPass = "http://${grgw.listenAddr}:${toString grgw.listenWebsocketPort}";
proxyWebsockets = true;
};
locations."/api" = {
proxyPass = "http://${grg.settings.host}:${toString grg.settings.port}";
};
locations."/docs" = {
proxyPass = "http://${grg.settings.host}:${toString grg.settings.port}";
};
2023-09-03 01:06:48 +02:00
};
};
}