disable: tunnel becouse it prevented acme
This commit is contained in:
parent
d413a5f2b1
commit
09d9b3a172
24
tunnel.nix
24
tunnel.nix
|
@ -3,19 +3,19 @@
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
clientMaxBodySize = "10g";
|
clientMaxBodySize = "10g";
|
||||||
defaultHTTPListenPort = 1234;
|
# defaultHTTPListenPort = 1234;
|
||||||
};
|
};
|
||||||
services.cloudflared = {
|
services.cloudflared = {
|
||||||
enable = true;
|
enable = false;
|
||||||
tunnels = {
|
# tunnels = {
|
||||||
"tulpan" = {
|
# "tulpan" = {
|
||||||
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:1234";
|
# "*.sondell.org" = "http://localhost:1234";
|
||||||
"sondell.org" = "http://localhost:1234";
|
# "sondell.org" = "http://localhost:1234";
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue