mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-19 04:18:55 +00:00
fix domain
This commit is contained in:
parent
c506215847
commit
c51430f9c1
2 changed files with 17 additions and 9 deletions
|
|
@ -234,17 +234,25 @@ in
|
|||
}
|
||||
'';
|
||||
|
||||
virtualHosts = builtins.listToAttrs (
|
||||
map (k: {
|
||||
name = "${k}.eisen.danbulant.cloud:80, ${k}.eisen:80";
|
||||
value = {
|
||||
# import auth
|
||||
virtualHosts =
|
||||
builtins.listToAttrs (
|
||||
map (k: {
|
||||
name = "${k}.eisen.danbulant.cloud:80, ${k}.eisen:80";
|
||||
value = {
|
||||
# import auth
|
||||
extraConfig = ''
|
||||
reverse_proxy http://localhost:${toString ports.${k}}
|
||||
'';
|
||||
};
|
||||
}) (builtins.attrNames ports)
|
||||
)
|
||||
// {
|
||||
"translations.danbulant.cloud:80, translations.rpi1.danbulant.cloud:80" = {
|
||||
extraConfig = ''
|
||||
reverse_proxy http://localhost:${toString ports.${k}}
|
||||
reverse_proxy http://localhost:${toString ports.tolgee}
|
||||
'';
|
||||
};
|
||||
}) (builtins.attrNames ports)
|
||||
);
|
||||
};
|
||||
};
|
||||
tailscale.permitCertUid = "caddy";
|
||||
tailscaleAuth = {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
# vr
|
||||
services.monado = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
defaultRuntime = true; # Register as default OpenXR runtime
|
||||
};
|
||||
systemd.user.services.monado.environment = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue