This Anible playbook deploys a self updating AdGuard Home stack based on Docker, featuring:
Please do not set up a public DNS resolver, i.e. an AdGuard Home instance facing the internet, if you don't know what you're doing. You risk getting in all sorts of trouble. Most ISPs don't allow public DNS resolvers on their networks and will shut you down without notice, because it's generally a bad idea..
If all you're looking for is an adblocking DNS service, please consider using AdGuard's own public DNS service instead.
You must own a Fully Qualified Domain Name (FQDN), such as yourdomain.com.
This is required to generate a valid SSL Certificate used for DoH & DoT.
You must setup an A (and AAAA record if IPv6 DNS resolution is desired) for your domain, pointing to the IP address of your Linux server.
This is required to generate a valid ZeroSSL SSL Certificate and used for DoH & DoT.\
You must create 3 cnames: traefik
, adguard
and portainer
this is needed for traefik as a reverse proxy provider. So you will connect to: adguard.example.com
but you can also use traefik.example.com
and portainer.example.com
.
Install Ansible, for example: sudo apt-add-repository -y ppa:ansible/ansible && sudo apt install ansible
on the machine that will initiate the playbook. Or run THIS Terraform script to automaticilly create a free linux ARM server with Oracle Cloud)
Clone repository using git clone https://github.com/Freekers/ansible-adguard.git
Install requirements ansible-galaxy install -r requirements/requirements.yml
Change all the needed stuff in vars
folder. But in specific: docker.yml
& firewall.yml
& user-management.yml
4.1 if you want to configure an external server edit: inventories/inventory.yml
with the server ip you want to configure.
If you want to configure a complete server: ansible-playbook ansible-playbook.yml -i inventory/inventory.yml -e "hostname=adguard.website.com emailaddress=here@email.com"
5.1 or if you want just to install adguard and not configure a whole server: ansible-playbook ansible-playbook.yml -e "hostname=adguard.website.com emailaddress=here@email.com" -t adguard
5.2 If you want to run this on your local computer use: ansible-playbook --connection=local --inventory 127.0.0.1, ansible-playbook.yml -e "hostname=adguard.website.com emailaddress=here@email.com"
After installation, it can take up to 5 minutes before your AdGuard Home instance will be accessible. This is due to ZeroSSL's certificate creation process. AdGuard Home will not start before a valid SSL certificate has been generated, so please be patient! For more information, please refer to the 'Usage Instructions' section below.
Supported distros:
You can also switch to blocky just change the docker-compose file found in: /roles/docker/templates/docker-compose.yml.j2
.
After installation, you can access the AdGuard Home admin interface of your instance by navigating to yourdomain.com. You should automatically be redirected to the login screen of your AdGuard Home instance.
Please remember that it can take up to 5 minutes before your AdGuard Home instance will be accessible after installation due to ZeroSSL's certificate creation process. AdGuard Home will not start before a valid SSL certificate has been generated, so please be patient!
Refer to the setup page within the AdGuard Home's Admin interface to setup your devices to use your AdGuard Home instance as DNS server.
The docker-compose.yml
file will be located at /srv/docker
. You can use regular docker and docker-compose commands to stop/start/restart containers.
If needed, for manual configuration of AdGuard Home, please refer to their official documententation.
If needed, for manual configuration of Unbound, please refer to their official documententation.
If needed, for manual configuration of Watchtower, please refer to their official documententation.
sudo docker-compose -f /srv/docker/docker-compose.yml down
rm -rf /srv/docker
Unless otherwise specified, all code in this repository is released under the GNU Affero General Public License v3.0. See the repository's LICENSE
file for details.