User Tools

Site Tools


computing:bind9dns

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
computing:bind9dns [2026/05/16 23:10] oemb1905computing:bind9dns [2026/05/16 23:28] (current) oemb1905
Line 616: Line 616:
   * [[https://matrix.to/#/@haacksnetworking:gnulinux.club|Haack's Networking on Matrix]]   * [[https://matrix.to/#/@haacksnetworking:gnulinux.club|Haack's Networking on Matrix]]
  
-Update ... tmp directory was too small:+Updates ... tmp directory was too small:
  
   sudo mkdir -p /webmin/tmp   sudo mkdir -p /webmin/tmp
Line 622: Line 622:
   sudo chmod 700 /webmin/tmp   sudo chmod 700 /webmin/tmp
      
-After that, navigate to Webmin Settings > Webmin Configuration and then specify custom tmp directory and enter ''/webmin/tmp''.+After that, navigate to Webmin Settings > Webmin Configuration and then specify custom tmp directory and enter ''/webmin/tmp''Even if/when fail2ban is setup, enough brute force attempts can still trigger webmin's internal security. In order to stop that from happening, you can specify approved IPs in your vhost in apache:
  
- --- //[[alerts@haacksnetworking.org|oemb1905]] 2026/05/16 23:09//+<code> 
 +<VirtualHost *:80> 
 +    ServerName ns1.haacksnetworking.com 
 +        <Location /> 
 +                Require ip 185.242.226.78 
 +                Require ip 2606:4700:3037::6815:4f2f 
 +        </Location>     
 +    RewriteEngine On 
 +    RewriteCond %{HTTPS} off 
 +    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 
 +    ProxyPass /.well-known ! 
 +</VirtualHost> 
 +</code> 
 + 
 + --- //[[alerts@haacksnetworking.org|oemb1905]] 2026/05/16 23:25//
computing/bind9dns.txt · Last modified: by oemb1905