mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	Do not allow magicdns if not nameservers set up
This commit is contained in:
		
							parent
							
								
									ef0f7c0c09
								
							
						
					
					
						commit
						ec911981c2
					
				| @ -108,8 +108,10 @@ func GetDNSConfig() (*tailcfg.DNSConfig, string) { | ||||
| 			dnsConfig.Domains = viper.GetStringSlice("dns_config.domains") | ||||
| 		} | ||||
| 
 | ||||
| 		if viper.IsSet("dns_config.magic_dns") { | ||||
| 			dnsConfig.Proxied = viper.GetBool("dns_config.magic_dns") | ||||
| 		if len(dnsConfig.Nameservers) > 0 { | ||||
| 			if viper.IsSet("dns_config.magic_dns") { | ||||
| 				dnsConfig.Proxied = viper.GetBool("dns_config.magic_dns") | ||||
| 			} | ||||
| 		} | ||||
| 
 | ||||
| 		var baseDomain string | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user