feat: working files and http://nixos-tulpan

This commit is contained in:
admin 2024-03-25 00:43:09 +01:00
parent de609b4e69
commit c314b245fa

View file

@ -3,6 +3,7 @@
services.nginx = { services.nginx = {
enable = true; enable = true;
clientMaxBodySize = "10g"; clientMaxBodySize = "10g";
defaultHTTPListenPort = 1234;
}; };
services.cloudflared = { services.cloudflared = {
enable = true; enable = true;
@ -11,7 +12,7 @@
credentialsFile = "/etc/nixos/.secrets/tulpan-tunnel.json"; credentialsFile = "/etc/nixos/.secrets/tulpan-tunnel.json";
default = "http_status:404"; default = "http_status:404";
ingress = { ingress = {
"*.sondell.org" = "http://localhost:80"; "*.sondell.org" = "http://localhost:1234";
}; };
}; };
}; };