Adguard Home: Difference between revisions

m Added to categories: Applications, Networking & Server
m fix: new parameter available host and port which override the param http.address
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Expansion}}
[https://github.com/AdguardTeam/AdGuardHome AdGuard Home] is an DNS Server for blocking ads and tracking.
== Example config ==
== Example config ==
<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
   services.adguardhome = {
   services.adguardhome = {
     enable = true;
     enable = true;
    # You can select any ip and port, just make sure to open firewalls where needed
    host = "127.0.0.1";
    port = 3003;
     settings = {
     settings = {
      http = {
        # You can select any ip and port, just make sure to open firewalls where needed
        address = "127.0.0.1:3003";
      };
       dns = {
       dns = {
         upstream_dns = [
         upstream_dns = [
Line 41: Line 43:
[[Category:Networking]]
[[Category:Networking]]
[[Category:Server]]
[[Category:Server]]
[[Category:DNS]]