From 9560a96d3644304cd76e0dbcbe138d53f3bc071d Mon Sep 17 00:00:00 2001 From: Andrey Kizimenko <87822796+AndreyKizimenko@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:29:58 -0500 Subject: [PATCH] Disabling .well-known resource that was needed to test #27390 (#31589) Reverting changes that were made here: https://github.com/fleetdm/fleet/pull/31582 --- website/config/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/config/routes.js b/website/config/routes.js index 9a1fc12460..711270ff61 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -1057,5 +1057,5 @@ module.exports.routes = { // https://developer.apple.com/documentation/devicemanagement/implementing-the-simple-authentication-user-enrollment-flow#Send-the-well-known-request // // TODO(BMAA): Uncomment this when we are ready to dogfood the Apple account-driven enrollment flow. - 'GET /.well-known/com.apple.remotemanagement': (req, res)=>{ return res.json({'Servers':[{'Version':'mdm-byod', 'BaseURL':'https://andrey.ngrok.app/api/mdm/apple/account_driven_enroll'}]});}, + // 'GET /.well-known/com.apple.remotemanagement': (req, res)=>{ return res.json({'Servers':[{'Version':'mdm-byod', 'BaseURL':'https://dogfood.fleetdm.com/api/mdm/apple/account_driven_enroll'}]});}, };