sysctl -w vm.swappiness=1
echo "vm.swappiness = 1" | sudo tee -a /etc/sysctl.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80 ipv6only=on; | |
server_name domainname.com; | |
root /var/pro/; #change this with the right location | |
index index.php index.html index.htm; | |
location / { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AdGuard Home Page on Docker: https://hub.docker.com/r/adguard/adguardhome | |
Video on YouTube: https://youtu.be/vBgCZvCDFh8 | |
YouTube Channel: https://www.youtube.com/c/OSCUK | |
--- | |
version: "2" | |
services: | |
adguardhome: | |
image: adguard/adguardhome | |
container_name: adguardhome |