mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-31 23:20:03 +02:00
DNS primary/secondary not required anymore.
This commit is contained in:
parent
f9860bd808
commit
86f4bdadb0
6 changed files with 25 additions and 5 deletions
|
@ -56,7 +56,7 @@ class WireGuardInstance(models.Model):
|
|||
post_up = models.TextField(blank=True, null=True)
|
||||
post_down = models.TextField(blank=True, null=True)
|
||||
peer_list_refresh_interval = models.IntegerField(default=20)
|
||||
dns_primary = models.GenericIPAddressField(unique=False, protocol='IPv4', default='1.1.1.1')
|
||||
dns_primary = models.GenericIPAddressField(unique=False, protocol='IPv4', default='1.1.1.1', blank=True, null=True)
|
||||
dns_secondary = models.GenericIPAddressField(unique=False, protocol='IPv4', default='1.0.0.1', blank=True, null=True)
|
||||
pending_changes = models.BooleanField(default=True)
|
||||
legacy_firewall = models.BooleanField(default=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue