diff --git a/core/src/registry/context.rs b/core/src/registry/context.rs index 02069caaa..0439f081c 100644 --- a/core/src/registry/context.rs +++ b/core/src/registry/context.rs @@ -123,7 +123,7 @@ impl RegistryContext { .tor_proxy .clone() .map(Ok) - .unwrap_or_else(|| "socks5h://localhost:9050".parse())?; + .unwrap_or_else(|| "socks5h://tor.startos:9050".parse())?; let pool: Option = match &config.pg_connection_url { Some(url) => match PgPool::connect(url.as_str()).await { Ok(pool) => Some(pool),