chore(fluidd): proxied

This commit is contained in:
arcnmx 2024-08-11 13:55:58 -07:00
parent bd78e75619
commit cd83456843
3 changed files with 47 additions and 11 deletions

View file

@ -2,12 +2,13 @@
inherit (gensokyo-zone.lib) domain;
inherit (lib.modules) mkIf mkDefault;
cfg = config.services.fluidd;
serverName = "@fluidd_internal";
virtualHost = config.services.nginx.virtualHosts.${cfg.hostName};
in {
services = {
fluidd = {
enable = mkDefault true;
hostName = mkDefault "print.local.${domain}";
# TODO: hostName = "@fluidd_internal";
hostName = mkDefault "print.local.${domain}"; # TODO: serverName?
nginx.locations."/webcam".proxyPass = let
inherit (config.services.motion.cameras) printercam;
inherit (printercam.settings) camera_id;
@ -15,9 +16,43 @@ in {
};
nginx = mkIf cfg.enable {
proxied.enable = true;
virtualHosts.${cfg.hostName} = {
proxied.enable = true;
local.denyGlobal = true;
virtualHosts = {
${cfg.hostName} = {
enable = false;
};
${serverName} = {
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/fluidd.nix
proxied.enable = true;
# TODO: proxy.upstream = "fluidd-apiserver";
proxy.url = "http://fluidd-apiserver";
root = virtualHost.root;
locations = {
"/" = {
inherit (virtualHost.locations."/") index tryFiles;
};
"/index.html" = {
extraConfig = ''
add_header Cache-Control "no-store, no-cache, must-revalidate";
'';
};
"/websocket" = {
proxy = {
enable = true;
websocket.enable = true;
};
};
"/webcam" = {
inherit (virtualHost.locations."/webcam") proxyPass;
};
"~ ^/(printer|api|access|machine|server)/" = {
proxy = {
enable = true;
websocket.enable = true;
path = "$request_uri";
};
};
};
};
};
};
};