Update well-known to serve jordan ngrok URL (#30723)

Updates the well-known URL for apple MDM account driven enrollment to
point to my ngrok URL for dev purposes. Was previously pointing to
victor's due to prior POC

For this user story: https://github.com/fleetdm/fleet/issues/27390

and this subtask: https://github.com/fleetdm/fleet/issues/30636
This commit is contained in:
Jordan Montgomery 2025-07-10 10:25:07 -04:00 committed by GitHub
parent 49a4a743d2
commit 21bf4b6f51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1055,6 +1055,6 @@ module.exports.routes = {
// Well known resources https://datatracker.ietf.org/doc/html/rfc8615
// =============================================================================================================
// Temporary enroll endpoint for https://github.com/fleetdm/fleet/issues/27391
'GET /.well-known/com.apple.remotemanagement': (req, res)=>{ return res.json({'Servers':[{'Version':'mdm-byod', 'BaseURL':'https://getvictor.ngrok.io/api/mdm/apple/enroll?token=bozo'}]});},
// Temporary enroll endpoint for https://github.com/fleetdm/fleet/issues/27390
'GET /.well-known/com.apple.remotemanagement': (req, res)=>{ return res.json({'Servers':[{'Version':'mdm-byod', 'BaseURL':'https://jordan-fleetdm.ngrok.app/api/mdm/apple/account_driven_enroll'}]});},
};