Skip to content

Commit

Permalink
~
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Aug 27, 2024
1 parent 91e1b66 commit 556ff2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ with

```nix
nix.settings = {
substituers = ["https://cache.garnix.io"];
substituters = ["https://cache.garnix.io"];
trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
];
Expand Down
4 changes: 2 additions & 2 deletions srv/dnsproxy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
enable = true;
flags = [
"--cache"
"--upstream-mode parallel"
"--edns"
"--http3"
"--ipv6-disabled" # :(
Expand All @@ -12,10 +11,11 @@
bootstrap = [ "223.6.6.6:53" ];
listen-addrs = [ "0.0.0.0" ];
listen-ports = [ 53 ];
upstream-mode = "parallel";
upstream = [
"quic://dns.alidns.com"
"tls://dot.pub"
"tcp://223.5.5.5"
"h3://dns.google/dns-query"
];
};
}

0 comments on commit 556ff2e

Please sign in to comment.