add idp and dashboard
This commit is contained in:
parent
428ef2c475
commit
ec0ca0fcc5
5 changed files with 390 additions and 48 deletions
|
|
@ -1,14 +1,48 @@
|
|||
{ homelab, username, ... }: {
|
||||
{ homelab, ... }: let
|
||||
rewrites = [
|
||||
[ "router.dns.${homelab.domain}" "10.3.14.1" ]
|
||||
[ "main.dns.${homelab.domain}" "10.3.14.42" ]
|
||||
[ "websites.dns.${homelab.domain}" "10.3.14.36" ]
|
||||
[ "games.dns.${homelab.domain}" "10.3.14.37" ]
|
||||
[ "media.dns.${homelab.domain}" "10.3.14.55" ]
|
||||
[ "workspace.dns.${homelab.domain}" "10.3.14.57" ]
|
||||
[ "server.dns.${homelab.domain}" "10.3.14.69" ]
|
||||
[ "home.dns.${homelab.domain}" "10.3.14.235" ]
|
||||
[ "nas.dns.${homelab.domain}" "10.3.14.217" ]
|
||||
[ "proxy.${homelab.domain}" "10.3.14.215" ]
|
||||
[ "*.proxy.${homelab.domain}" "proxy.${homelab.domain}" ]
|
||||
[ "lancache.steamcontent.com" "main.dns.${homelab.domain}" ]
|
||||
[ "steam.cache.lancache.net" "main.dns.${homelab.domain}" ]
|
||||
];
|
||||
blacklist = [
|
||||
"https://adaway.org/hosts.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_10.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_42.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_31.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_11.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_59.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_30.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_50.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_12.txt"
|
||||
"https://raw.githubusercontent.com/PolishFiltersTeam/KADhosts/master/KADhosts.txt"
|
||||
"https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt"
|
||||
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
|
||||
"https://v.firebog.net/hosts/static/w3kbl.txt"
|
||||
"https://v.firebog.net/hosts/Prigent-Ads.txt"
|
||||
"https://v.firebog.net/hosts/Admiral.txt"
|
||||
"https://someonewhocares.org/hosts/hosts"
|
||||
];
|
||||
whitelist = [
|
||||
"https://gist.githubusercontent.com/mul14/eb05e88fcec5bb195cbb/raw/75a1fe122a4502e8d5a5268c9d0ec28332b19d5d/hosts"
|
||||
];
|
||||
in {
|
||||
services.adguardhome = {
|
||||
enable = true;
|
||||
host = "127.0.0.1"; # bind web ui to localhost since we're using reverse proxy authentication
|
||||
host = "127.0.0.1";
|
||||
port = 8088;
|
||||
mutableSettings = false;
|
||||
settings = {
|
||||
# users = [{
|
||||
# name = "${username}";
|
||||
# password = "${username}";
|
||||
# }];
|
||||
dns = {
|
||||
upstream_dns = [ "https://security.cloudflare-dns.com/dns-query" ];
|
||||
bootstrap_dns = [ "1.1.1.2" "1.0.0.2" ];
|
||||
|
|
@ -25,44 +59,10 @@
|
|||
rewrites_enabled = true;
|
||||
filtering_enabled = true;
|
||||
safe_search.enabled = true;
|
||||
rewrites = map (e: { enabled = true; domain = builtins.elemAt e 0; answer = builtins.elemAt e 1; }) [
|
||||
[ "router.dns.${homelab.domain}" "10.3.14.1" ]
|
||||
[ "main.dns.${homelab.domain}" "10.3.14.42" ]
|
||||
[ "websites.dns.${homelab.domain}" "10.3.14.36" ]
|
||||
[ "games.dns.${homelab.domain}" "10.3.14.37" ]
|
||||
[ "media.dns.${homelab.domain}" "10.3.14.55" ]
|
||||
[ "workspace.dns.${homelab.domain}" "10.3.14.57" ]
|
||||
[ "server.dns.${homelab.domain}" "10.3.14.69" ]
|
||||
[ "home.dns.${homelab.domain}" "10.3.14.235" ]
|
||||
[ "nas.dns.${homelab.domain}" "10.3.14.217" ]
|
||||
[ "proxy.${homelab.domain}" "10.3.14.215" ]
|
||||
[ "*.proxy.${homelab.domain}" "proxy.${homelab.domain}" ]
|
||||
[ "lancache.steamcontent.com" "main.dns.${homelab.domain}" ]
|
||||
[ "steam.cache.lancache.net" "main.dns.${homelab.domain}" ]
|
||||
];
|
||||
rewrites = map (e: { enabled = true; domain = builtins.elemAt e 0; answer = builtins.elemAt e 1; }) rewrites;
|
||||
};
|
||||
filters = map (url: { enabled = true; url = url; }) [
|
||||
"https://adaway.org/hosts.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_10.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_42.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_31.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_11.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_59.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_30.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_50.txt"
|
||||
"https://adguardteam.github.io/HostlistsRegistry/assets/filter_12.txt"
|
||||
"https://raw.githubusercontent.com/PolishFiltersTeam/KADhosts/master/KADhosts.txt"
|
||||
"https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt"
|
||||
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
|
||||
"https://v.firebog.net/hosts/static/w3kbl.txt"
|
||||
"https://v.firebog.net/hosts/Prigent-Ads.txt"
|
||||
"https://v.firebog.net/hosts/Admiral.txt"
|
||||
"https://someonewhocares.org/hosts/hosts"
|
||||
];
|
||||
whitelist_filters = map (url: { enabled = true; url = url; }) [
|
||||
"https://gist.githubusercontent.com/mul14/eb05e88fcec5bb195cbb/raw/75a1fe122a4502e8d5a5268c9d0ec28332b19d5d/hosts"
|
||||
];
|
||||
filters = map (url: { enabled = true; url = url; }) blacklist;
|
||||
whitelist_filters = map (url: { enabled = true; url = url; }) whitelist;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue