Skip to content

Commit

Permalink
✅ Update version to v0.104.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Belaytzev committed Dec 13, 2020
1 parent ebde096 commit 5ad0f57
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 24 deletions.
58 changes: 40 additions & 18 deletions AdGuardHome.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
bind_host: 0.0.0.0
bind_port: 80
users: []
users:
- name: homeadguard
password: $2y$10$/NwRxjsTFpMyyJGrnrDgZ.BjS1lJtq6Yuu0Y1yJNPs4BO4MZMxZli
http_proxy: ""
language: ""
rlimit_nofile: 0
Expand All @@ -9,19 +11,20 @@ web_session_ttl: 720
dns:
bind_host: 0.0.0.0
port: 53
statistics_interval: 1
statistics_interval: 30
querylog_enabled: true
querylog_interval: 90
querylog_file_enabled: true
querylog_interval: 30
querylog_size_memory: 1000
anonymize_client_ip: false
protection_enabled: true
blocking_mode: null_ip
blocking_ipv4: false
blocking_ipv6: true
blocking_mode: default
blocking_ipv4: ""
blocking_ipv6: ""
blocked_response_ttl: 10
parental_block_host: family-block.dns.adguard.com
safebrowsing_block_host: standard-block.dns.adguard.com
ratelimit: 100
ratelimit: 20
ratelimit_whitelist: []
refuse_any: true
upstream_dns:
Expand All @@ -30,6 +33,7 @@ dns:
- https://doh.opendns.com/dns-query #Cisco Open DNS
- tls://dns10.quad9.net #Quad9 DNS
- https://dns10.quad9.net/dns-query #Quad9 DNS
upstream_dns_file: ""
bootstrap_dns:
- '1.1.1.1' #Cloudflare Public DNS
- '1.0.0.1' #Cloudflare Public DNS
Expand All @@ -38,22 +42,27 @@ dns:
- '9.9.9.10' #Quad9 DNS
- '149.112.112.10' #Quad9 DNS
all_servers: false
fastest_addr: true
fastest_addr: false
allowed_clients: []
disallowed_clients: []
blocked_hosts: []
blocked_hosts:
- version.bind
- id.server
- hostname.bind
cache_size: 4194304
cache_ttl_min: 0
cache_ttl_max: 0
bogus_nxdomain: []
aaaa_disabled: true
aaaa_disabled: false
enable_dnssec: false
edns_client_subnet: false
max_goroutines: 300
ipset: []
filtering_enabled: true
filters_update_interval: 24
parental_enabled: false
safesearch_enabled: false
safebrowsing_enabled: true
safebrowsing_enabled: false
safebrowsing_cache_size: 1048576
safesearch_cache_size: 1048576
parental_cache_size: 1048576
Expand All @@ -66,6 +75,7 @@ tls:
force_https: false
port_https: 443
port_dns_over_tls: 853
port_dns_over_quic: 784
allow_unencrypted_doh: false
strict_sni_check: false
certificate_chain: ""
Expand Down Expand Up @@ -94,13 +104,25 @@ user_rules: []
dhcp:
enabled: false
interface_name: ""
gateway_ip: ""
subnet_mask: ""
range_start: ""
range_end: ""
lease_duration: 86400
icmp_timeout_msec: 1000
dhcpv4:
gateway_ip: ""
subnet_mask: ""
range_start: ""
range_end: ""
lease_duration: 86400
icmp_timeout_msec: 1000
options: []
dhcpv6:
range_start: ""
lease_duration: 86400
ra_slaac_only: false
ra_allow_slaac: false
clients: []
log_compress: false
log_localtime: false
log_max_backups: 0
log_max_size: 100
log_max_age: 3
log_file: ""
verbose: false
schema_version: 6
schema_version: 7
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
FROM adguard/adguardhome:latest
FROM adguard/adguardhome:v0.104.3

COPY AdGuardHome.yaml /opt/adguardhome/conf/AdGuardHome.yaml
COPY AdGuardHome.yaml /opt/adguardhome/conf/AdGuardHome.yaml

EXPOSE 80
EXPOSE 53
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,12 @@ AdGuard Home in Docker-Compose with configs
* Get latest [release](https://github.com/belaytzev/HomeGuard/releases/latest)
* Run docker-compose file
* Enjoy more secure and faster Internet!

## Create you own password
#### Default user/password
- User: homeadguard
- Pass: password

```
docker run --rm httpd:2.4-alpine htpasswd -nbBC 10 user "password" | cut -d ":" -f 2
```
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: "2.4"

services:
adguardhome:
hostname: adguardhome
container_name: adguardhome
homeadguard:
hostname: homeadguard
container_name: homeadguard
build:
context: .
dockerfile: Dockerfile
Expand All @@ -17,8 +17,9 @@ services:
volumes:
- './data/work:/opt/adguardhome/work'
dns:
- 127.0.0.1
- 1.1.1.1
- 208.67.222.222
- 9.9.9.10
logging:
driver: "json-file"
options:
Expand Down

0 comments on commit 5ad0f57

Please sign in to comment.