feat: add incus virtual host to orion
This commit is contained in:
parent
65c93ad729
commit
0cd3f8fc06
@ -1,11 +1,13 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) concatLists unique;
|
||||
inherit (lib) concatLists unique recursiveUpdate;
|
||||
nginx = config.ataraxia.services.nginx;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
@ -168,6 +170,15 @@ in
|
||||
)
|
||||
);
|
||||
|
||||
services.nginx.virtualHosts = {
|
||||
"incus.ataraxiadev.com" = recursiveUpdate nginx.defaultSettings {
|
||||
locations."/" = {
|
||||
proxyPass = "https://10.10.10.5:8443";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ataraxia.virtualisation.guests = {
|
||||
omv = {
|
||||
autoStart = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user