Skip to content

Instantly share code, notes, and snippets.

@cecilemuller
Last active October 2, 2015 22:58
Show Gist options
  • Save cecilemuller/2340560 to your computer and use it in GitHub Desktop.
Save cecilemuller/2340560 to your computer and use it in GitHub Desktop.
Nginx support for 3D file formats mimetypes (VRML, X3D and Collada)

Edit the file /etc/nginx/mime.types to add the new types, then make sure to reload Nginx configuration once you're done (e.g. using service nginx reload).

application/x-bskey bskey;
model/vrml wrl wrz;
model/x3d-vrml x3dv;
model/x3d+xml x3d;
model/x3d+fastinfoset x3db;
model/vnd.collada+xml dae;
@cecilemuller
Copy link
Author

X3D Binary used to be model/x3d+binary, but according to the formal submission to IETF, it is now model/x3d+fastinfoset.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment