update
Some checks failed
Build GurtCA / Build GurtCA (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 11m17s
Build Gurty / Build Gurty (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 12m9s
Build GurtCA / Build GurtCA (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
Build Gurty / Build Gurty (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled

This commit is contained in:
2025-11-07 18:27:37 +08:00
parent a508e3cefd
commit f2f63d32e5
9 changed files with 19 additions and 19 deletions

View File

@@ -3,7 +3,7 @@ use crate::client::{Challenge, GurtCAClient};
pub async fn complete_dns_challenge(challenge: &Challenge, client: &GurtCAClient) -> Result<()> {
println!("Please add this TXT record to your domain:");
println!(" 1. Go to lw://dns.web (or your DNS server)");
println!(" 1. Go to lw://dns.root (or your DNS server)");
println!(" 2. Login and navigate to your domain: {}", challenge.domain);
println!(" 3. Add TXT record:");
println!(" Name: _gurtca-challenge");
@@ -30,7 +30,7 @@ async fn verify_dns_txt_record(domain: &str, expected_value: &str, client: &Gurt
});
let response = client
.post_json("lw://dns.web/resolve-full", &request)
.post_json("lw://dns.root/resolve-full", &request)
.await?;
if response.is_success() {

View File

@@ -12,7 +12,7 @@ struct Cli {
#[command(subcommand)]
command: Commands,
#[arg(long, default_value = "lw://dns.web")]
#[arg(long, default_value = "lw://dns.root")]
ca_url: String,
}