Advertisement
niammuddin

install unbound dns

Jan 28th, 2022
820
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.15 KB | None | 0 0
  1. UNBOUND
  2.  
  3. install unbound
  4. https://www.linuxbabe.com/ubuntu/set-up-unbound-dns-resolver-on-ubuntu-20-04-server#comment-393743
  5.  
  6. install munin
  7. https://stanislas.blog/2018/02/configure-unbound-plugin-munin/
  8. https://unbound.docs.nlnetlabs.nl/en/latest/topics/monitoring.html
  9.  
  10. install ssl di apache2 server
  11. https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-apache-in-ubuntu-18-04
  12.  
  13. landing page blocked
  14. https://github.com/sdn-net/blocked
  15.  
  16.  
  17.  
  18. password directory dengan .htaccess
  19.  
  20. htpasswd -c /etc/apache2/.htpasswd username
  21.  
  22. Leave out the -c argument for any additional users you wish to add:
  23. sudo htpasswd /etc/apache2/.htpasswd another_username
  24.  
  25. tambahkan baris kode dibawah ini dibagian paling bawah pada file /etc/munin/munin.conf
  26.  
  27. <Location /munin/>
  28.     AuthType Basic
  29.     AuthName "Restricted Content"
  30.     AuthUserFile /etc/apache2/.htpasswd
  31.     Require valid-user
  32. </Location>
  33.  
  34. https://www.digitalocean.com/community/tutorials/how-to-set-up-password-authentication-with-apache-on-ubuntu-14-04
  35. https://serverfault.com/questions/247731/setting-separate-permissions-for-alias-using-directory-directive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement