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
Next revision
Previous revision
computing:bind9dns [2025/12/28 08:43] 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]]
  
- --- //[[alerts@haacksnetworking.org|oemb1905]] 2025/12/28 08:26//+Updates ... tmp directory was too small: 
 + 
 +  sudo mkdir -p /webmin/tmp 
 +  sudo chown root:root /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''. 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: 
 + 
 +<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.1766911427.txt.gz · Last modified: by oemb1905