Skip to content

Commit

Permalink
Restore older network config
Browse files Browse the repository at this point in the history
  • Loading branch information
jrose-signal committed Oct 31, 2024
1 parent b777cbc commit 6ed2eca
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions rust/net/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,14 +225,22 @@ pub const DOMAIN_CONFIG_SVR3_TPM2SNP_STAGING: DomainConfig = DomainConfig {
pub const PROXY_CONFIG_F_PROD: ProxyConfig = ProxyConfig {
route_type: RouteType::ProxyF,
http_host: "reflector-signal.global.ssl.fastly.net",
sni_list: &["splashthat.com", "slate.com", "www.redditstatic.com"],
sni_list: &[
"github.githubassets.com",
"pinterest.com",
"www.redditstatic.com",
],
certs: RootCertificates::Native,
};

pub const PROXY_CONFIG_F_STAGING: ProxyConfig = ProxyConfig {
route_type: RouteType::ProxyF,
http_host: "reflector-staging-signal.global.ssl.fastly.net",
sni_list: &["splashthat.com", "slate.com", "www.redditstatic.com"],
sni_list: &[
"github.githubassets.com",
"pinterest.com",
"www.redditstatic.com",
],
certs: RootCertificates::Native,
};

Expand Down

0 comments on commit 6ed2eca

Please sign in to comment.