This commit is contained in:
2025-06-07 12:15:13 +03:00
parent 59dcd78e32
commit 7d8c576151
2 changed files with 10 additions and 5 deletions
+10 -4
View File
@@ -9,7 +9,6 @@
services = { services = {
cloudflared = { cloudflared = {
enable = true; enable = true;
certificateFile = "${inputs.zeroq.dirs.server-credentials}/cloudflared/cert.pem"; certificateFile = "${inputs.zeroq.dirs.server-credentials}/cloudflared/cert.pem";
tunnels = { tunnels = {
"58b340ee-e98a-4af9-b786-74600c71f49e" = { "58b340ee-e98a-4af9-b786-74600c71f49e" = {
@@ -19,12 +18,19 @@
"immich.zeroq.ru" = { "immich.zeroq.ru" = {
service = "http://localhost:2283"; service = "http://localhost:2283";
}; };
"nextcloud.zeroq.ru" = {
service = "http://localhost:10000";
};
}; };
default = "http_status:404"; default = "http_status:404";
}; };
# "58b340ee-e98a-4af9-b786-74600c71f49e" = {
# credentialsFile = "${inputs.zeroq.dirs.server-credentials}/cloudflared/server.json";
# warp-routing.enabled = true;
# ingress = {
# "nextcloud.zeroq.ru" = {
# service = "http://localhost:10000";
# };
# };
# default = "http_status:404";
# };
}; };
}; };
}; };
-1
View File
@@ -46,7 +46,6 @@
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
immich-cli immich-cli
cloudflared
]; ];
}; };
} }