init
This commit is contained in:
12
ProxyConfig.cs
Normal file
12
ProxyConfig.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace FireflyProxy;
|
||||
|
||||
public class ProxyConfig
|
||||
{
|
||||
public List<string> RedirectDomains { get; set; } = [];
|
||||
public List<string> AlwaysIgnoreDomains { get; set; } = [];
|
||||
public List<string> ForceRedirectOnUrlContains { get; set; } = [];
|
||||
public HashSet<string> BlockUrls { get; set; } = [];
|
||||
public required string DestinationHost { get; set; }
|
||||
public required int DestinationPort { get; set; }
|
||||
public int ProxyBindPort { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user