Disabling .well-known resource that was needed to test #27390 (#31589)

Reverting changes that were made here:
https://github.com/fleetdm/fleet/pull/31582
This commit is contained in:
Andrey Kizimenko 2025-08-04 16:29:58 -05:00 committed by GitHub
parent f18add7926
commit 9560a96d36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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'}]});},
};