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
).
Last active
October 2, 2015 22:58
-
-
Save cecilemuller/2340560 to your computer and use it in GitHub Desktop.
Nginx support for 3D file formats mimetypes (VRML, X3D and Collada)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
X3D Binary used to be
model/x3d+binary
, but according to the formal submission to IETF, it is nowmodel/x3d+fastinfoset
.