This commit is contained in:
2025-05-25 08:57:57 +07:00
commit cb8af83230
1025 changed files with 13058 additions and 0 deletions

12
ProxyConfig.cs Normal file
View 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; }
}