From aaf4f40285d419527a6a1dace31e92568e7e7832 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 30 Sep 2021 10:28:50 +0200 Subject: [PATCH] subscription: switch verification domain over to shop.proxmox.com With the merger the shop got moved from shop.maurer-it to shop.proxmox.com, while we transparently redirect we also want to stop doing that in a few years, so use new domain. Signed-off-by: Thomas Lamprecht --- src/tools/subscription.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/subscription.rs b/src/tools/subscription.rs index 74548931..c6cf5381 100644 --- a/src/tools/subscription.rs +++ b/src/tools/subscription.rs @@ -118,7 +118,7 @@ async fn register_subscription( let mut client = pbs_simple_http(proxy_config); - let uri = "https://shop.maurer-it.com/modules/servers/licensing/verify.php"; + let uri = "https://shop.proxmox.com/modules/servers/licensing/verify.php"; let query = json_object_to_query(params)?; let response = client.post(uri, Some(query), Some("application/x-www-form-urlencoded")).await?; let body = SimpleHttp::response_body_string(response).await?;