Correct mime type for .reality file

I have a website at iis 10 windows server 2019 . the server not support reality file . so i want to add the correct mime type to iis to support it . Thanks for any help .

My favourite trick for this is to use the Uniform Type Identifiers framework to do the work for you. For example, paste this in a playground:

import Foundation
import UniformTypeIdentifiers

let u = UTType(filenameExtension: "reality")
print(u?.preferredMIMEType ?? "-")
// prints: model/vnd.reality

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Correct mime type for .reality file
 
 
Q