apiVersion: v1 data: httpd.conf: | # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see # # for a discussion of each configuration directive. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so 'log/access_log' # with ServerRoot set to '/www' will be interpreted by the # server as '/www/log/access_log', where as '/log/access_log' will be # interpreted as '/log/access_log'. # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # Do not add a slash at the end of the directory path. If you point # ServerRoot at a non-local disk, be sure to specify a local disk on the # Mutex directive, if file-based mutexes are used. If you wish to share the # same ServerRoot for multiple httpd daemons, you will need to change at # least PidFile. # ServerRoot "/etc/httpd" # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the # directive. # # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses. # #Listen 12.34.56.78:80 Listen [::]:6190 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # Include conf.modules.d/*.conf # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User default Group root # 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # definition. These values also provide defaults for # any containers you may define later in the file. # # All of these directives may appear inside containers, # in which case these default settings will be overridden for the # virtual host being defined. # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If your host doesn't have a registered DNS name, enter its IP address here. # #ServerName www.example.com:80 # # Deny access to the entirety of your server's filesystem. You must # explicitly permit access to web content directories in other # blocks below. # AllowOverride none Require all denied # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "/usr/local/apache2/htdocs" # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.4/mod/core.html#options # for more information. # Options +Indexes +FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # AllowOverride FileInfo AuthConfig Limit # AllowOverride None # # Controls who can get stuff from this server. # Require all granted # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # DirectoryIndex index.html # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Require all denied # # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. # ErrorLog |/usr/bin/cat # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common # You need to enable mod_logio.c to use %I and %O LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # container, they will be logged here. Contrariwise, if you *do* # define per- access logfiles, transactions will be # logged therein and *not* in this file. # #CustomLog "logs/access_log" common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # CustomLog |/usr/bin/cat combined # # Redirect: Allows you to tell clients about documents that used to # exist in your server's namespace, but do not anymore. The client # will make a new request for the document at its new location. # Example: # Redirect permanent /foo http://www.example.com/bar # # Alias: Maps web paths into filesystem paths and is used to # access content that does not live under the DocumentRoot. # Example: # Alias /webpath /full/filesystem/path # # If you include a trailing / on /webpath then the server will # require it to be present in the URL. You will also likely # need to provide a section to allow access to # the filesystem path. # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the target directory are treated as applications and # run by the server when requested rather than as documents sent to the # client. The same rules about trailing "/" apply to ScriptAlias # directives as to Alias. # ScriptAlias /cgi-bin/ "/opt/rh/httpd24/root/var/www/cgi-bin/" # # "/opt/rh/httpd24/root/var/www/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # AllowOverride None Options None Require all granted # # TypesConfig points to the file containing the list of mappings from # filename extension to MIME-type. # TypesConfig /etc/mime.types # # AddType allows you to add to or override the MIME configuration # file specified in TypesConfig for specific file types. # #AddType application/x-gzip .tgz # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # AddHandler allows you to map certain file extensions to "handlers": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add "ExecCGI" to the "Options" directive.) # #AddHandler cgi-script .cgi # For type maps (negotiated resources): #AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # AddType text/html .shtml AddOutputFilter INCLUDES .shtml # # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset UTF-8 # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # MIMEMagicFile conf/magic # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # EnableMMAP and EnableSendfile: On systems that support it, # memory-mapping or the sendfile syscall may be used to deliver # files. This usually improves server performance, but must # be turned off when serving from networked-mounted # filesystems or if support for these functions is otherwise # broken on your system. # Defaults if commented: EnableMMAP On, EnableSendfile Off # #EnableMMAP off EnableSendfile on # Supplemental configuration # # Load config files in the "/etc/httpd/conf.d" directory, except SSL IncludeOptional conf.d/auth_mellon.conf IncludeOptional conf.d/autoindex.conf IncludeOptional conf.d/mod_security.conf IncludeOptional conf.d/userdir.conf #IncludeOptional conf.d/welcome.conf # Disable tracing for security purposes TraceEnable Off mime.types: "# This is a comment. I love comments.\t\t -*- indent-tabs-mode:\ \ t -*-\n\n# This file controls what Internet media types are sent to the client\ \ for\n# given file extension(s). Sending the correct media type to the client\n\ # is important so they know how to handle the content of the file.\n# Extra types\ \ can either be added here or by using an AddType directive\n# in your config\ \ files. For more information about Internet media types,\n# please read RFC 2045,\ \ 2046, 2047, 2048, and 2077. The Internet media type\n# registry is at .\n\ \n# IANA types\n\n# MIME type\t\t\t\t\tExtensions\napplication/1d-interleaved-parityfec\n\ application/3gpdash-qoe-report+xml\napplication/3gpp-ims+xml\napplication/A2L\t\ \t\t\t\ta2l\napplication/activemessage\napplication/alto-costmap+json\napplication/alto-costmapfilter+json\n\ application/alto-directory+json\napplication/alto-endpointcost+json\napplication/alto-endpointcostparams+json\n\ application/alto-endpointprop+json\napplication/alto-endpointpropparams+json\n\ application/alto-error+json\napplication/alto-networkmap+json\napplication/alto-networkmapfilter+json\n\ application/AML\t\t\t\t\taml\napplication/andrew-inset\t\t\tez\napplication/applefile\n\ application/ATF\t\t\t\t\tatf\napplication/ATFX\t\t\t\tatfx\napplication/ATXML\t\ \t\t\tatxml\napplication/atom+xml\t\t\t\tatom\napplication/atomcat+xml\t\t\t\t\ atomcat\napplication/atomdeleted+xml\t\t\tatomdeleted\napplication/atomicmail\n\ application/atomsvc+xml\t\t\t\tatomsvc\napplication/auth-policy+xml\t\t\tapxml\n\ application/bacnet-xdd+zip\t\t\txdd\napplication/batch-SMTP\napplication/beep+xml\n\ application/calendar+json\napplication/calendar+xml\t\t\txcs\napplication/call-completion\n\ application/cals-1840\napplication/cbor\t\t\t\tcbor\napplication/ccmp+xml\t\t\t\ \tccmp\napplication/ccxml+xml\t\t\t\tccxml\napplication/CDFX+XML\t\t\t\tcdfx\n\ application/cdmi-capability\t\t\tcdmia\napplication/cdmi-container\t\t\tcdmic\n\ application/cdmi-domain\t\t\t\tcdmid\napplication/cdmi-object\t\t\t\tcdmio\napplication/cdmi-queue\t\ \t\t\tcdmiq\napplication/cdni\napplication/CEA\t\t\t\t\tcea\napplication/cea-2018+xml\n\ application/cellml+xml\t\t\t\tcellml cml\napplication/cfw\napplication/clue_info+xml\t\ \t\tclue\napplication/cms\t\t\t\t\tcmsc\napplication/cnrp+xml\napplication/coap-group+json\n\ application/coap-payload\napplication/commonground\napplication/conference-info+xml\n\ application/cpl+xml\t\t\t\tcpl\napplication/cose\napplication/cose-key\napplication/cose-key-set\n\ application/csrattrs\t\t\t\tcsrattrs\napplication/csta+xml\napplication/CSTAdata+xml\n\ application/csvm+json\napplication/cybercash\napplication/dash+xml\t\t\t\tmpd\n\ application/dashdelta\t\t\t\tmpdd\napplication/davmount+xml\t\t\tdavmount\napplication/dca-rft\n\ application/DCD\t\t\t\t\tdcd\napplication/dec-dx\napplication/dialog-info+xml\n\ application/dicom\t\t\t\tdcm\napplication/dicom+json\napplication/dicom+xml\n\ application/DII\t\t\t\t\tdii\napplication/DIT\t\t\t\t\tdit\napplication/dns\n\ application/dskpp+xml\t\t\t\txmls\napplication/dssc+der\t\t\t\tdssc\napplication/dssc+xml\t\ \t\t\txdssc\napplication/dvcs\t\t\t\tdvc\napplication/ecmascript\t\t\t\tes\napplication/EDI-Consent\n\ application/EDI-X12\napplication/EDIFACT\napplication/efi\t\t\t\t\tefi\napplication/EmergencyCallData.Comment+xml\n\ application/EmergencyCallData.Control+xml\napplication/EmergencyCallData.DeviceInfo+xml\n\ application/EmergencyCallData.eCall.MSD\napplication/EmergencyCallData.ProviderInfo+xml\n\ application/EmergencyCallData.ServiceInfo+xml\napplication/EmergencyCallData.SubscriberInfo+xml\n\ application/EmergencyCallData.VEDS+xml\napplication/emma+xml\t\t\t\temma\napplication/emotionml+xml\t\ \t\temotionml\napplication/encaprtp\napplication/epp+xml\napplication/epub+zip\t\ \t\t\tepub\napplication/eshop\napplication/exi\t\t\t\t\texi\napplication/fastinfoset\t\ \t\t\tfinf\napplication/fastsoap\napplication/fdt+xml\t\t\t\tfdt\n# fits, fit,\ \ fts: image/fits\napplication/fits\n# application/font-sfnt deprecated in favor\ \ of font/sfnt\napplication/font-tdpfr\t\t\t\tpfr\n# application/font-woff deprecated\ \ in favor of font/woff\napplication/framework-attributes+xml\napplication/geo+json\t\ \t\t\tgeojson\napplication/geo+json-seq\napplication/gml+xml\t\t\t\tgml\napplication/gzip\t\ \t\t\tgz tgz\napplication/H224\napplication/held+xml\napplication/http\napplication/hyperstudio\t\ \t\t\tstk\napplication/ibe-key-request+xml\napplication/ibe-pkg-reply+xml\napplication/ibe-pp-data\n\ application/iges\napplication/im-iscomposing+xml\napplication/index\napplication/index.cmd\n\ application/index.obj\napplication/index.response\napplication/index.vnd\napplication/inkml+xml\t\ \t\t\tink inkml\napplication/iotp\napplication/ipfix\t\t\t\tipfix\napplication/ipp\n\ application/isup\napplication/its+xml\t\t\t\tits\napplication/javascript\t\t\t\ \tjs\napplication/jose\napplication/jose+json\napplication/jrd+json\t\t\t\tjrd\n\ application/json\t\t\t\tjson\napplication/json-patch+json\t\t\tjson-patch\napplication/json-seq\n\ application/jwk+json\napplication/jwk-set+json\napplication/jwt\napplication/kpml-request+xml\n\ application/kpml-response+xml\napplication/ld+json\t\t\t\tjsonld\napplication/lgr+xml\t\ \t\t\tlgr\napplication/link-format\t\t\t\twlnk\napplication/load-control+xml\n\ application/lost+xml\t\t\t\tlostxml\napplication/lostsync+xml\t\t\tlostsyncxml\n\ application/LXF\t\t\t\t\tlxf\napplication/mac-binhex40\t\t\thqx\napplication/macwriteii\n\ application/mads+xml\t\t\t\tmads\napplication/marc\t\t\t\tmrc\napplication/marcxml+xml\t\ \t\t\tmrcx\napplication/mathematica\t\t\t\tnb ma mb\napplication/mathml-content+xml\n\ application/mathml-presentation+xml\napplication/mathml+xml\t\t\t\tmml\napplication/mbms-associated-procedure-description+xml\n\ application/mbms-deregister+xml\napplication/mbms-envelope+xml\napplication/mbms-msk-response+xml\n\ application/mbms-msk+xml\napplication/mbms-protection-description+xml\napplication/mbms-reception-report+xml\n\ application/mbms-register-response+xml\napplication/mbms-register+xml\napplication/mbms-schedule+xml\n\ application/mbms-user-service-description+xml\napplication/mbox\t\t\t\tmbox\n\ application/media_control+xml\n# mpf: text/vnd.ms-mediapackage\napplication/media-policy-dataset+xml\n\ application/mediaservercontrol+xml\napplication/merge-patch+json\napplication/metalink4+xml\t\ \t\tmeta4\napplication/mets+xml\t\t\t\tmets\napplication/MF4\t\t\t\t\tmf4\napplication/mikey\n\ application/mods+xml\t\t\t\tmods\napplication/moss-keys\napplication/moss-signature\n\ application/mosskey-data\napplication/mosskey-request\napplication/mp21\t\t\t\t\ m21 mp21\n# mp4, mpg4: video/mp4, see RFC 4337\napplication/mp4\napplication/mpeg4-generic\n\ application/mpeg4-iod\napplication/mpeg4-iod-xmt\n# xdf: application/xcap-diff+xml\n\ application/mrb-consumer+xml\napplication/mrb-publish+xml\napplication/msc-ivr+xml\n\ application/msc-mixer+xml\napplication/msword\t\t\t\tdoc\napplication/mud+json\n\ application/mxf\t\t\t\t\tmxf\napplication/n-quads\t\t\t\tnq\napplication/n-triples\t\ \t\t\tnt\napplication/nasdata\napplication/news-checkgroups\napplication/news-groupinfo\n\ application/news-transmission\napplication/nlsml+xml\napplication/nss\napplication/ocsp-request\t\ \t\torq\napplication/ocsp-response\t\t\tors\napplication/octet-stream\t\tbin lha\ \ lzh exe class so dll img iso\napplication/oda\t\t\t\t\toda\napplication/ODX\t\ \t\t\t\todx\napplication/oebps-package+xml\t\t\topf\napplication/ogg\t\t\t\t\t\ ogx\napplication/oxps\t\t\t\toxps\napplication/p2p-overlay+xml\t\t\trelo\napplication/parityfec\n\ # xer: application/xcap-error+xml\napplication/patch-ops-error+xml\napplication/pdf\t\ \t\t\t\tpdf\napplication/PDX\t\t\t\t\tpdx\napplication/pgp-encrypted\t\t\tpgp\n\ application/pgp-keys\napplication/pgp-signature\t\t\tsig\napplication/pidf-diff+xml\n\ application/pidf+xml\napplication/pkcs10\t\t\t\tp10\napplication/pkcs12\t\t\t\t\ p12 pfx\napplication/pkcs7-mime\t\t\t\tp7m p7c\napplication/pkcs7-signature\t\t\ \tp7s\napplication/pkcs8\t\t\t\tp8\n# ac: application/vnd.nokia.n-gage.ac+xml\n\ application/pkix-attr-cert\napplication/pkix-cert\t\t\t\tcer\napplication/pkix-crl\t\ \t\t\tcrl\napplication/pkix-pkipath\t\t\tpkipath\napplication/pkixcmp\t\t\t\t\ pki\napplication/pls+xml\t\t\t\tpls\napplication/poc-settings+xml\napplication/postscript\t\ \t\t\tps eps ai\napplication/ppsp-tracker+json\napplication/problem+json\napplication/problem+xml\n\ application/provenance+xml\t\t\tprovx\napplication/prs.alvestrand.titrax-sheet\n\ application/prs.cww\t\t\t\tcw cww\napplication/prs.hpub+zip\t\t\thpub\napplication/prs.nprend\t\ \t\t\trnd rct\napplication/prs.plucker\napplication/prs.rdf-xml-crypt\t\t\trdf-crypt\n\ application/prs.xsf+xml\t\t\t\txsf\napplication/pskc+xml\t\t\t\tpskcxml\napplication/qsig\n\ application/raptorfec\napplication/rdap+json\napplication/rdf+xml\t\t\t\trdf\n\ application/reginfo+xml\t\t\t\trif\napplication/relax-ng-compact-syntax\t\trnc\n\ application/remote-printing\napplication/reputon+json\napplication/resource-lists-diff+xml\t\ \trld\napplication/resource-lists+xml\t\t\trl\napplication/rfc+xml\t\t\t\trfcxml\n\ application/riscos\napplication/rlmi+xml\napplication/rls-services+xml\t\t\trs\n\ application/rpki-ghostbusters\t\t\tgbr\napplication/rpki-manifest\t\t\tmft\napplication/rpki-publication\n\ application/rpki-roa\t\t\t\troa\napplication/rpki-updown\napplication/rtf\t\t\t\ \t\trtf\napplication/rtploopback\napplication/rtx\napplication/samlassertion+xml\n\ application/samlmetadata+xml\napplication/sbml+xml\napplication/scaip+xml\n# scm:\ \ application/vnd.lotus-screencam\napplication/scim+json\t\t\t\tscim\napplication/scvp-cv-request\t\ \t\tscq\napplication/scvp-cv-response\t\t\tscs\napplication/scvp-vp-request\t\t\ \tspq\napplication/scvp-vp-response\t\t\tspp\napplication/sdp\t\t\t\t\tsdp\napplication/sep+xml\n\ application/sep-exi\napplication/session-info\napplication/set-payment\napplication/set-payment-initiation\n\ application/set-registration\napplication/set-registration-initiation\napplication/sgml\n\ application/sgml-open-catalog\t\t\tsoc\napplication/shf+xml\t\t\t\tshf\napplication/sieve\t\ \t\t\tsiv sieve\napplication/simple-filter+xml\t\t\tcl\napplication/simple-message-summary\n\ application/simpleSymbolContainer\napplication/slate\n# application/smil obsoleted\ \ by application/smil+xml\napplication/smil+xml\t\t\t\tsmil smi sml\napplication/smpte336m\n\ application/soap+fastinfoset\napplication/soap+xml\napplication/sparql-query\t\ \t\trq\napplication/sparql-results+xml\t\t\tsrx\napplication/spirits-event+xml\n\ application/sql\t\t\t\t\tsql\napplication/srgs\t\t\t\tgram\napplication/srgs+xml\t\ \t\t\tgrxml\napplication/sru+xml\t\t\t\tsru\napplication/ssml+xml\t\t\t\tssml\n\ application/tamp-apex-update\t\t\ttau\napplication/tamp-apex-update-confirm\t\t\ auc\napplication/tamp-community-update\t\ttcu\napplication/tamp-community-update-confirm\t\ cuc\napplication/tamp-error\t\t\t\tter\napplication/tamp-sequence-adjust\t\ttsa\n\ application/tamp-sequence-adjust-confirm\tsac\n# tsq: application/timestamp-query\n\ application/tamp-status-query\n# tsr: application/timestamp-reply\napplication/tamp-status-response\n\ application/tamp-update\t\t\t\ttur\napplication/tamp-update-confirm\t\t\ttuc\n\ application/tei+xml\t\t\t\ttei teiCorpus odd\napplication/thraud+xml\t\t\t\ttfi\n\ application/timestamp-query\t\t\ttsq\napplication/timestamp-reply\t\t\ttsr\napplication/timestamped-data\t\ \t\ttsd\napplication/trig\t\t\t\ttrig\napplication/ttml+xml\t\t\t\tttml\napplication/tve-trigger\n\ application/ulpfec\napplication/urc-grpsheet+xml\t\t\tgsheet\napplication/urc-ressheet+xml\t\ \t\trsheet\napplication/urc-targetdesc+xml\t\t\ttd\napplication/urc-uisocketdesc+xml\t\ \tuis\napplication/vcard+json\napplication/vcard+xml\napplication/vemmi\napplication/vnd.3gpp.access-transfer-events+xml\n\ application/vnd.3gpp.bsf+xml\napplication/vnd.3gpp.mid-call+xml\napplication/vnd.3gpp.pic-bw-large\t\ \tplb\napplication/vnd.3gpp.pic-bw-small\t\tpsb\napplication/vnd.3gpp.pic-bw-var\t\ \t\tpvb\napplication/vnd.3gpp-prose+xml\napplication/vnd.3gpp-prose-pc3ch+xml\n\ # sms: application/vnd.3gpp2.sms\napplication/vnd.3gpp.sms\napplication/vnd.3gpp.sms+xml\n\ application/vnd.3gpp.srvcc-ext+xml\napplication/vnd.3gpp.SRVCC-info+xml\napplication/vnd.3gpp.state-and-event-info+xml\n\ application/vnd.3gpp.ussd+xml\napplication/vnd.3gpp2.bcmcsinfo+xml\napplication/vnd.3gpp2.sms\t\ \t\tsms\napplication/vnd.3gpp2.tcap\t\t\ttcap\napplication/vnd.3lightssoftware.imagescal\t\ imgcal\napplication/vnd.3M.Post-it-Notes\t\tpwn\napplication/vnd.accpac.simply.aso\t\ \taso\napplication/vnd.accpac.simply.imp\t\timp\napplication/vnd.acucobol\t\t\t\ acu\napplication/vnd.acucorp\t\t\t\tatc acutc\napplication/vnd.adobe.flash.movie\t\ \tswf\napplication/vnd.adobe.formscentral.fcdt\t\tfcdt\napplication/vnd.adobe.fxp\t\ \t\tfxp fxpl\napplication/vnd.adobe.partial-upload\napplication/vnd.adobe.xdp+xml\t\ \t\txdp\napplication/vnd.adobe.xfdf\t\t\txfdf\napplication/vnd.aether.imp\napplication/vnd.ah-barcode\n\ application/vnd.ahead.space\t\t\tahead\napplication/vnd.airzip.filesecure.azf\t\ \tazf\napplication/vnd.airzip.filesecure.azs\t\tazs\napplication/vnd.amazon.mobi8-ebook\t\ \tazw3\napplication/vnd.americandynamics.acc\t\tacc\napplication/vnd.amiga.ami\t\ \t\tami\napplication/vnd.amundsen.maze+xml\napplication/vnd.anki\t\t\t\tapkg\n\ application/vnd.anser-web-certificate-issue-initiation\tcii\n# Not in IANA listing,\ \ but is on FTP site?\napplication/vnd.anser-web-funds-transfer-initiation\tfti\n\ # atx: audio/ATRAC-X\napplication/vnd.antix.game-component\napplication/vnd.apache.thrift.binary\n\ application/vnd.apache.thrift.compact\napplication/vnd.apache.thrift.json\napplication/vnd.api+json\n\ application/vnd.apothekende.reservation+json\napplication/vnd.apple.installer+xml\t\ \tdist distz pkg mpkg\n# m3u: audio/x-mpegurl for now\napplication/vnd.apple.mpegurl\t\ \t\tm3u8\n# application/vnd.arastra.swi obsoleted by application/vnd.aristanetworks.swi\n\ application/vnd.aristanetworks.swi\t\tswi\napplication/vnd.artsquare\napplication/vnd.astraea-software.iota\t\ \tiota\napplication/vnd.audiograph\t\t\taep\napplication/vnd.autopackage\t\t\t\ package\napplication/vnd.avistar+xml\napplication/vnd.balsamiq.bmml+xml\t\tbmml\n\ application/vnd.balsamiq.bmpr\t\t\tbmpr\napplication/vnd.bekitzur-stech+json\n\ application/vnd.bint.med-content\napplication/vnd.biopax.rdf+xml\napplication/vnd.blueice.multipass\t\ \tmpm\napplication/vnd.bluetooth.ep.oob\t\tep\napplication/vnd.bluetooth.le.oob\t\ \tle\napplication/vnd.bmi\t\t\t\tbmi\napplication/vnd.businessobjects\t\t\trep\n\ application/vnd.cab-jscript\napplication/vnd.canon-cpdl\napplication/vnd.canon-lips\n\ application/vnd.capasystems-pg+json\napplication/vnd.cendio.thinlinc.clientconf\t\ tlclient\napplication/vnd.century-systems.tcp_stream\napplication/vnd.chemdraw+xml\t\ \t\tcdxml\napplication/vnd.chess-pgn\t\t\tpgn\napplication/vnd.chipnuts.karaoke-mmd\t\ \tmmd\napplication/vnd.cinderella\t\t\tcdy\napplication/vnd.cirpack.isdn-ext\n\ application/vnd.citationstyles.style+xml\tcsl\napplication/vnd.claymore\t\t\t\ cla\napplication/vnd.cloanto.rp9\t\t\trp9\napplication/vnd.clonk.c4group\t\t\t\ c4g c4d c4f c4p c4u\napplication/vnd.cluetrust.cartomobile-config\tc11amc\napplication/vnd.cluetrust.cartomobile-config-pkg\t\ c11amz\napplication/vnd.coffeescript\t\t\tcoffee\napplication/vnd.collection+json\n\ application/vnd.collection.doc+json\napplication/vnd.collection.next+json\napplication/vnd.comicbook+zip\t\ \t\tcbz\n# icc: application/vnd.iccprofile\napplication/vnd.commerce-battelle\t\ ica icf icd ic0 ic1 ic2 ic3 ic4 ic5 ic6 ic7 ic8\napplication/vnd.commonspace\t\ \t\tcsp cst\napplication/vnd.contact.cmsg\t\t\tcdbcmsg\napplication/vnd.coreos.ignition+json\t\ \tign ignition\napplication/vnd.cosmocaller\t\t\tcmc\napplication/vnd.crick.clicker\t\ \t\tclkx\napplication/vnd.crick.clicker.keyboard\t\tclkk\napplication/vnd.crick.clicker.palette\t\ \tclkp\napplication/vnd.crick.clicker.template\t\tclkt\napplication/vnd.crick.clicker.wordbank\t\ \tclkw\napplication/vnd.criticaltools.wbs+xml\t\twbs\napplication/vnd.ctc-posml\t\ \t\tpml\napplication/vnd.ctct.ws+xml\napplication/vnd.cups-pdf\napplication/vnd.cups-postscript\n\ application/vnd.cups-ppd\t\t\tppd\napplication/vnd.cups-raster\napplication/vnd.cups-raw\n\ application/vnd.curl\t\t\t\tcurl\napplication/vnd.cyan.dean.root+xml\napplication/vnd.cybank\n\ application/vnd.d2l.coursepackage1p0+zip\napplication/vnd.dart\t\t\t\tdart\napplication/vnd.data-vision.rdz\t\ \t\trdz\napplication/vnd.datapackage+json\napplication/vnd.dataresource+json\n\ application/vnd.debian.binary-package\t\tdeb udeb\napplication/vnd.dece.data\t\ \t\tuvf uvvf uvd uvvd\napplication/vnd.dece.ttml+xml\t\t\tuvt uvvt\napplication/vnd.dece.unspecified\t\ \tuvx uvvx\napplication/vnd.dece.zip\t\t\tuvz uvvz\napplication/vnd.denovo.fcselayout-link\t\ \tfe_launch\napplication/vnd.desmume.movie\t\t\tdsm\napplication/vnd.dir-bi.plate-dl-nosuffix\n\ application/vnd.dm.delegation+xml\napplication/vnd.dna\t\t\t\tdna\napplication/vnd.document+json\t\ \t\tdocjson\napplication/vnd.dolby.mobile.1\napplication/vnd.dolby.mobile.2\n\ application/vnd.doremir.scorecloud-binary-document\tscld\napplication/vnd.dpgraph\t\ \t\t\tdpg mwc dpgraph\napplication/vnd.dreamfactory\t\t\tdfac\napplication/vnd.drive+json\n\ application/vnd.dtg.local\napplication/vnd.dtg.local.flash\t\t\tfla\napplication/vnd.dtg.local.html\n\ application/vnd.dvb.ait\t\t\t\tait\n# class: application/octet-stream\napplication/vnd.dvb.dvbj\n\ application/vnd.dvb.esgcontainer\napplication/vnd.dvb.ipdcdftnotifaccess\napplication/vnd.dvb.ipdcesgaccess\n\ application/vnd.dvb.ipdcesgaccess2\napplication/vnd.dvb.ipdcesgpdd\napplication/vnd.dvb.ipdcroaming\n\ application/vnd.dvb.iptv.alfec-base\napplication/vnd.dvb.iptv.alfec-enhancement\n\ application/vnd.dvb.notif-aggregate-root+xml\napplication/vnd.dvb.notif-container+xml\n\ application/vnd.dvb.notif-generic+xml\napplication/vnd.dvb.notif-ia-msglist+xml\n\ application/vnd.dvb.notif-ia-registration-request+xml\napplication/vnd.dvb.notif-ia-registration-response+xml\n\ application/vnd.dvb.notif-init+xml\n# pfr: application/font-tdpfr\napplication/vnd.dvb.pfr\n\ application/vnd.dvb.service\t\t\tsvc\n# dxr: application/x-director\napplication/vnd.dxr\n\ application/vnd.dynageo\t\t\t\tgeo\napplication/vnd.dzr\t\t\t\tdzr\napplication/vnd.easykaraoke.cdgdownload\n\ application/vnd.ecdis-update\napplication/vnd.ecowin.chart\t\t\tmag\napplication/vnd.ecowin.filerequest\n\ application/vnd.ecowin.fileupdate\napplication/vnd.ecowin.series\napplication/vnd.ecowin.seriesrequest\n\ application/vnd.ecowin.seriesupdate\n# img: application/octet-stream\napplication/vnd.efi-img\n\ # iso: application/octet-stream\napplication/vnd.efi-iso\napplication/vnd.enliven\t\ \t\t\tnml\napplication/vnd.enphase.envoy\napplication/vnd.eprints.data+xml\napplication/vnd.epson.esf\t\ \t\tesf\napplication/vnd.epson.msf\t\t\tmsf\napplication/vnd.epson.quickanime\t\ \tqam\napplication/vnd.epson.salt\t\t\tslt\napplication/vnd.epson.ssf\t\t\tssf\n\ application/vnd.ericsson.quickcall\t\tqcall qca\napplication/vnd.espass-espass+zip\t\ \tespass\napplication/vnd.eszigno3+xml\t\t\tes3 et3\napplication/vnd.etsi.aoc+xml\n\ application/vnd.etsi.asic-e+zip\t\t\tasice sce\n# scs: application/scvp-cv-response\n\ application/vnd.etsi.asic-s+zip\t\t\tasics\napplication/vnd.etsi.cug+xml\napplication/vnd.etsi.iptvcommand+xml\n\ application/vnd.etsi.iptvdiscovery+xml\napplication/vnd.etsi.iptvprofile+xml\n\ application/vnd.etsi.iptvsad-bc+xml\napplication/vnd.etsi.iptvsad-cod+xml\napplication/vnd.etsi.iptvsad-npvr+xml\n\ application/vnd.etsi.iptvservice+xml\napplication/vnd.etsi.iptvsync+xml\napplication/vnd.etsi.iptvueprofile+xml\n\ application/vnd.etsi.mcid+xml\napplication/vnd.etsi.mheg5\napplication/vnd.etsi.overload-control-policy-dataset+xml\n\ application/vnd.etsi.pstn+xml\napplication/vnd.etsi.sci+xml\napplication/vnd.etsi.simservs+xml\n\ application/vnd.etsi.timestamp-token\t\ttst\napplication/vnd.etsi.tsl.der\napplication/vnd.etsi.tsl+xml\n\ application/vnd.eudora.data\napplication/vnd.ezpix-album\t\t\tez2\napplication/vnd.ezpix-package\t\ \t\tez3\napplication/vnd.f-secure.mobile\napplication/vnd.fastcopy-disk-image\t\ \tdim\napplication/vnd.fdf\t\t\t\tfdf\napplication/vnd.fdsn.mseed\t\t\tmsd mseed\n\ application/vnd.fdsn.seed\t\t\tseed dataless\napplication/vnd.ffsns\napplication/vnd.filmit.zfc\t\ \t\tzfc\n# all extensions: application/vnd.hbci\napplication/vnd.fints\napplication/vnd.firemonkeys.cloudcell\n\ application/vnd.FloGraphIt\t\t\tgph\napplication/vnd.fluxtime.clip\t\t\tftc\n\ application/vnd.font-fontforge-sfd\t\tsfd\napplication/vnd.framemaker\t\t\tfm\n\ application/vnd.frogans.fnc\t\t\tfnc\napplication/vnd.frogans.ltf\t\t\tltf\napplication/vnd.fsc.weblaunch\t\ \t\tfsc\napplication/vnd.fujitsu.oasys\t\t\toas\napplication/vnd.fujitsu.oasys2\t\ \t\toa2\napplication/vnd.fujitsu.oasys3\t\t\toa3\napplication/vnd.fujitsu.oasysgp\t\ \t\tfg5\napplication/vnd.fujitsu.oasysprs\t\tbh2\napplication/vnd.fujixerox.ART-EX\n\ application/vnd.fujixerox.ART4\napplication/vnd.fujixerox.ddd\t\t\tddd\napplication/vnd.fujixerox.docuworks\t\ \txdw\napplication/vnd.fujixerox.docuworks.binder\txbd\napplication/vnd.fujixerox.docuworks.container\t\ xct\napplication/vnd.fujixerox.HBPL\napplication/vnd.fut-misnet\napplication/vnd.fuzzysheet\t\ \t\tfzs\napplication/vnd.genomatix.tuxedo\t\ttxd\n# application/vnd.geo+json obsoleted\ \ by application/geo+json\napplication/vnd.geocube+xml\t\t\tg3 g³\napplication/vnd.geogebra.file\t\ \t\tggb\napplication/vnd.geogebra.tool\t\t\tggt\napplication/vnd.geometry-explorer\t\ \tgex gre\napplication/vnd.geonext\t\t\t\tgxt\napplication/vnd.geoplan\t\t\t\t\ g2w\napplication/vnd.geospace\t\t\tg3w\n# gbr: application/rpki-ghostbusters\n\ application/vnd.gerber\napplication/vnd.globalplatform.card-content-mgt\napplication/vnd.globalplatform.card-content-mgt-response\n\ application/vnd.gmx\t\t\t\tgmx\napplication/vnd.google-earth.kml+xml\t\tkml\n\ application/vnd.google-earth.kmz\t\tkmz\napplication/vnd.gov.sk.e-form+xml\napplication/vnd.gov.sk.e-form+zip\n\ application/vnd.gov.sk.xmldatacontainer+xml\napplication/vnd.grafeq\t\t\t\tgqf\ \ gqs\napplication/vnd.gridmp\napplication/vnd.groove-account\t\t\tgac\napplication/vnd.groove-help\t\ \t\tghf\napplication/vnd.groove-identity-message\t\tgim\napplication/vnd.groove-injector\t\ \t\tgrv\napplication/vnd.groove-tool-message\t\tgtm\napplication/vnd.groove-tool-template\t\ \ttpl\napplication/vnd.groove-vcard\t\t\tvcg\napplication/vnd.hal+json\napplication/vnd.hal+xml\t\ \t\t\thal\napplication/vnd.HandHeld-Entertainment+xml\tzmm\napplication/vnd.hbci\t\ \t\t\thbci hbc kom upa pkd bpd\napplication/vnd.hc+json\n# rep: application/vnd.businessobjects\n\ application/vnd.hcl-bireports\napplication/vnd.hdt\t\t\t\thdt\napplication/vnd.heroku+json\n\ application/vnd.hhe.lesson-player\t\tles\napplication/vnd.hp-HPGL\t\t\t\thpgl\n\ application/vnd.hp-hpid\t\t\t\thpi hpid\napplication/vnd.hp-hps\t\t\t\thps\napplication/vnd.hp-jlyt\t\ \t\t\tjlt\napplication/vnd.hp-PCL\t\t\t\tpcl\napplication/vnd.hp-PCLXL\napplication/vnd.httphone\n\ application/vnd.hydrostatix.sof-data\t\tsfd-hdstx\napplication/vnd.hyperdrive+json\n\ application/vnd.hzn-3d-crossword\t\tx3d\napplication/vnd.ibm.afplinedata\napplication/vnd.ibm.electronic-media\t\ \temm\napplication/vnd.ibm.MiniPay\t\t\tmpy\napplication/vnd.ibm.modcap\t\t\t\ list3820 listafp afp pseg3820\napplication/vnd.ibm.rights-management\t\tirm\n\ application/vnd.ibm.secure-container\t\tsc\napplication/vnd.iccprofile\t\t\ticc\ \ icm\napplication/vnd.ieee.1905\t\t\t1905.1\napplication/vnd.igloader\t\t\tigl\n\ application/vnd.imagemeter.folder+zip\t\timf\napplication/vnd.imagemeter.image+zip\t\ \timi\napplication/vnd.immervision-ivp\t\t\tivp\napplication/vnd.immervision-ivu\t\ \t\tivu\napplication/vnd.ims.imsccv1p1\t\t\timscc\napplication/vnd.ims.imsccv1p2\n\ application/vnd.ims.imsccv1p3\napplication/vnd.ims.lis.v2.result+json\napplication/vnd.ims.lti.v2.toolconsumerprofile+json\n\ application/vnd.ims.lti.v2.toolproxy.id+json\napplication/vnd.ims.lti.v2.toolproxy+json\n\ application/vnd.ims.lti.v2.toolsettings+json\napplication/vnd.ims.lti.v2.toolsettings.simple+json\n\ application/vnd.informedcontrol.rms+xml\n# application/vnd.informix-visionary\ \ obsoleted by application/vnd.visionary\napplication/vnd.infotech.project\napplication/vnd.infotech.project+xml\n\ application/vnd.innopath.wamp.notification\napplication/vnd.insors.igm\t\t\tigm\n\ application/vnd.intercon.formnet\t\txpw xpx\napplication/vnd.intergeo\t\t\ti2g\n\ application/vnd.intertrust.digibox\napplication/vnd.intertrust.nncp\napplication/vnd.intu.qbo\t\ \t\tqbo\napplication/vnd.intu.qfx\t\t\tqfx\napplication/vnd.iptc.g2.catalogitem+xml\n\ application/vnd.iptc.g2.conceptitem+xml\napplication/vnd.iptc.g2.knowledgeitem+xml\n\ application/vnd.iptc.g2.newsitem+xml\napplication/vnd.iptc.g2.newsmessage+xml\n\ application/vnd.iptc.g2.packageitem+xml\napplication/vnd.iptc.g2.planningitem+xml\n\ application/vnd.ipunplugged.rcprofile\t\trcprofile\napplication/vnd.irepository.package+xml\t\ \tirp\napplication/vnd.is-xpr\t\t\t\txpr\napplication/vnd.isac.fcs\t\t\tfcs\n\ application/vnd.jam\t\t\t\tjam\napplication/vnd.japannet-directory-service\napplication/vnd.japannet-jpnstore-wakeup\n\ application/vnd.japannet-payment-wakeup\napplication/vnd.japannet-registration\n\ application/vnd.japannet-registration-wakeup\napplication/vnd.japannet-setstore-wakeup\n\ application/vnd.japannet-verification\napplication/vnd.japannet-verification-wakeup\n\ application/vnd.jcp.javame.midlet-rms\t\trms\napplication/vnd.jisp\t\t\t\tjisp\n\ application/vnd.joost.joda-archive\t\tjoda\napplication/vnd.jsk.isdn-ngn\napplication/vnd.kahootz\t\ \t\t\tktz ktr\napplication/vnd.kde.karbon\t\t\tkarbon\napplication/vnd.kde.kchart\t\ \t\tchrt\napplication/vnd.kde.kformula\t\t\tkfo\napplication/vnd.kde.kivio\t\t\ \tflw\napplication/vnd.kde.kontour\t\t\tkon\napplication/vnd.kde.kpresenter\t\t\ \tkpr kpt\napplication/vnd.kde.kspread\t\t\tksp\napplication/vnd.kde.kword\t\t\ \tkwd kwt\napplication/vnd.kenameaapp\t\t\thtke\napplication/vnd.kidspiration\t\ \t\tkia\napplication/vnd.Kinar\t\t\t\tkne knp sdf\napplication/vnd.koan\t\t\t\t\ skp skd skm skt\napplication/vnd.kodak-descriptor\t\tsse\napplication/vnd.las.las+json\t\ \t\tlasjson\napplication/vnd.las.las+xml\t\t\tlasxml\napplication/vnd.liberty-request+xml\n\ application/vnd.llamagraphics.life-balance.desktop\tlbd\napplication/vnd.llamagraphics.life-balance.exchange+xml\t\ lbe\napplication/vnd.lotus-1-2-3\t\t\t123 wk4 wk3 wk1\napplication/vnd.lotus-approach\t\ \t\tapr vew\napplication/vnd.lotus-freelance\t\t\tprz pre\napplication/vnd.lotus-notes\t\ \t\tnsf ntf ndl ns4 ns3 ns2 nsh nsg\napplication/vnd.lotus-organizer\t\t\tor3\ \ or2 org\napplication/vnd.lotus-screencam\t\t\tscm\napplication/vnd.lotus-wordpro\t\ \t\tlwp sam\napplication/vnd.macports.portpkg\t\tportpkg\napplication/vnd.mapbox-vector-tile\t\ \tmvt\napplication/vnd.marlin.drm.actiontoken+xml\napplication/vnd.marlin.drm.conftoken+xml\n\ application/vnd.marlin.drm.license+xml\napplication/vnd.marlin.drm.mdcf\t\t\t\ mdc\napplication/vnd.mason+json\napplication/vnd.maxmind.maxmind-db\t\tmmdb\n\ application/vnd.mcd\t\t\t\tmcd\napplication/vnd.medcalcdata\t\t\tmc1\napplication/vnd.mediastation.cdkey\t\ \tcdkey\napplication/vnd.meridian-slingshot\napplication/vnd.MFER\t\t\t\tmwf\n\ application/vnd.mfmp\t\t\t\tmfm\napplication/vnd.micro+json\napplication/vnd.micrografx.flo\t\ \t\tflo\napplication/vnd.micrografx.igx\t\t\tigx\napplication/vnd.microsoft.portable-executable\n\ application/vnd.microsoft.windows.thumbnail-cache\napplication/vnd.miele+json\n\ application/vnd.mif\t\t\t\tmif\napplication/vnd.minisoft-hp3000-save\napplication/vnd.mitsubishi.misty-guard.trustweb\n\ application/vnd.Mobius.DAF\t\t\tdaf\napplication/vnd.Mobius.DIS\t\t\tdis\napplication/vnd.Mobius.MBK\t\ \t\tmbk\napplication/vnd.Mobius.MQY\t\t\tmqy\napplication/vnd.Mobius.MSL\t\t\t\ msl\napplication/vnd.Mobius.PLC\t\t\tplc\napplication/vnd.Mobius.TXF\t\t\ttxf\n\ application/vnd.mophun.application\t\tmpn\napplication/vnd.mophun.certificate\t\ \tmpc\napplication/vnd.motorola.flexsuite\napplication/vnd.motorola.flexsuite.adsi\n\ application/vnd.motorola.flexsuite.fis\napplication/vnd.motorola.flexsuite.gotap\n\ application/vnd.motorola.flexsuite.kmr\napplication/vnd.motorola.flexsuite.ttc\n\ application/vnd.motorola.flexsuite.wem\napplication/vnd.motorola.iprm\napplication/vnd.mozilla.xul+xml\t\ \t\txul\napplication/vnd.ms-3mfdocument\t\t\t3mf\napplication/vnd.ms-artgalry\t\ \t\tcil\napplication/vnd.ms-asf\t\t\t\tasf\napplication/vnd.ms-cab-compressed\t\ \tcab\napplication/vnd.ms-excel\t\t\txls xlm xla xlc xlt xlw\napplication/vnd.ms-excel.template.macroEnabled.12\t\ xltm\napplication/vnd.ms-excel.addin.macroEnabled.12\txlam\napplication/vnd.ms-excel.sheet.binary.macroEnabled.12\t\ xlsb\napplication/vnd.ms-excel.sheet.macroEnabled.12\txlsm\napplication/vnd.ms-fontobject\t\ \t\teot\napplication/vnd.ms-htmlhelp\t\t\tchm\napplication/vnd.ms-ims\t\t\t\t\ ims\napplication/vnd.ms-lrm\t\t\t\tlrm\napplication/vnd.ms-office.activeX+xml\n\ application/vnd.ms-officetheme\t\t\tthmx\napplication/vnd.ms-playready.initiator+xml\n\ application/vnd.ms-powerpoint\t\t\tppt pps pot\napplication/vnd.ms-powerpoint.addin.macroEnabled.12\t\ ppam\napplication/vnd.ms-powerpoint.presentation.macroEnabled.12\tpptm\napplication/vnd.ms-powerpoint.slide.macroEnabled.12\t\ sldm\napplication/vnd.ms-powerpoint.slideshow.macroEnabled.12\tppsm\napplication/vnd.ms-powerpoint.template.macroEnabled.12\t\ potm\napplication/vnd.ms-PrintDeviceCapabilities+xml\napplication/vnd.ms-PrintSchemaTicket+xml\n\ application/vnd.ms-project\t\t\tmpp mpt\napplication/vnd.ms-tnef\t\t\t\ttnef tnf\n\ application/vnd.ms-windows.devicepairing\napplication/vnd.ms-windows.nwprinting.oob\n\ application/vnd.ms-windows.printerpairing\napplication/vnd.ms-windows.wsd.oob\n\ application/vnd.ms-wmdrm.lic-chlg-req\napplication/vnd.ms-wmdrm.lic-resp\napplication/vnd.ms-wmdrm.meter-chlg-req\n\ application/vnd.ms-wmdrm.meter-resp\napplication/vnd.ms-word.document.macroEnabled.12\t\ docm\napplication/vnd.ms-word.template.macroEnabled.12\tdotm\napplication/vnd.ms-works\t\ \t\twcm wdb wks wps\napplication/vnd.ms-wpl\t\t\t\twpl\napplication/vnd.ms-xpsdocument\t\ \t\txps\napplication/vnd.msa-disk-image\t\t\tmsa\napplication/vnd.mseq\t\t\t\t\ mseq\napplication/vnd.msign\napplication/vnd.multiad.creator\t\t\tcrtr\napplication/vnd.multiad.creator.cif\t\ \tcif\napplication/vnd.music-niff\napplication/vnd.musician\t\t\tmus\napplication/vnd.muvee.style\t\ \t\tmsty\napplication/vnd.mynfc\t\t\t\ttaglet\napplication/vnd.ncd.control\napplication/vnd.ncd.reference\n\ application/vnd.nearst.inv+json\napplication/vnd.nervana\t\t\t\tentity request\ \ bkm kcm\napplication/vnd.netfpx\n# ntf: application/vnd.lotus-notes\napplication/vnd.nitf\t\ \t\t\tnitf\napplication/vnd.neurolanguage.nlu\t\tnlu\napplication/vnd.nintendo.nitro.rom\t\ \tnds\napplication/vnd.nintendo.snes.rom\t\tsfc smc\napplication/vnd.noblenet-directory\t\ \tnnd\napplication/vnd.noblenet-sealer\t\t\tnns\napplication/vnd.noblenet-web\t\ \t\tnnw\napplication/vnd.nokia.catalogs\napplication/vnd.nokia.conml+wbxml\napplication/vnd.nokia.conml+xml\n\ application/vnd.nokia.iptv.config+xml\napplication/vnd.nokia.iSDS-radio-presets\n\ application/vnd.nokia.landmark+wbxml\napplication/vnd.nokia.landmark+xml\napplication/vnd.nokia.landmarkcollection+xml\n\ application/vnd.nokia.n-gage.ac+xml\t\tac\napplication/vnd.nokia.n-gage.data\t\ \tngdat\napplication/vnd.nokia.n-gage.symbian.install\tn-gage\napplication/vnd.nokia.ncd\n\ application/vnd.nokia.pcd+wbxml\napplication/vnd.nokia.pcd+xml\napplication/vnd.nokia.radio-preset\t\ \trpst\napplication/vnd.nokia.radio-presets\t\trpss\napplication/vnd.novadigm.EDM\t\ \t\tedm\napplication/vnd.novadigm.EDX\t\t\tedx\napplication/vnd.novadigm.EXT\t\ \t\text\napplication/vnd.ntt-local.content-share\napplication/vnd.ntt-local.file-transfer\n\ application/vnd.ntt-local.ogw_remote-access\napplication/vnd.ntt-local.sip-ta_remote\n\ application/vnd.ntt-local.sip-ta_tcp_stream\napplication/vnd.oasis.opendocument.chart\t\ \t\todc\napplication/vnd.oasis.opendocument.chart-template\t\totc\napplication/vnd.oasis.opendocument.database\t\ \t\todb\napplication/vnd.oasis.opendocument.formula\t\t\todf\n# otf: font/otf\n\ application/vnd.oasis.opendocument.formula-template\napplication/vnd.oasis.opendocument.graphics\t\ \t\todg\napplication/vnd.oasis.opendocument.graphics-template\t\totg\napplication/vnd.oasis.opendocument.image\t\ \t\todi\napplication/vnd.oasis.opendocument.image-template\t\toti\napplication/vnd.oasis.opendocument.presentation\t\ \t\todp\napplication/vnd.oasis.opendocument.presentation-template\totp\napplication/vnd.oasis.opendocument.spreadsheet\t\ \t\tods\napplication/vnd.oasis.opendocument.spreadsheet-template\t\tots\napplication/vnd.oasis.opendocument.text\t\ \t\t\todt\napplication/vnd.oasis.opendocument.text-master\t\t\todm\napplication/vnd.oasis.opendocument.text-template\t\ \tott\napplication/vnd.oasis.opendocument.text-web\t\t\toth\napplication/vnd.obn\n\ application/vnd.ocf+cbor\napplication/vnd.oftn.l10n+json\napplication/vnd.oipf.contentaccessdownload+xml\n\ application/vnd.oipf.contentaccessstreaming+xml\napplication/vnd.oipf.cspg-hexbinary\n\ application/vnd.oipf.dae.svg+xml\napplication/vnd.oipf.dae.xhtml+xml\napplication/vnd.oipf.mippvcontrolmessage+xml\n\ application/vnd.oipf.pae.gem\napplication/vnd.oipf.spdiscovery+xml\napplication/vnd.oipf.spdlist+xml\n\ application/vnd.oipf.ueprofile+xml\napplication/vnd.olpc-sugar\t\t\txo\napplication/vnd.oma.bcast.associated-procedure-parameter+xml\n\ application/vnd.oma.bcast.drm-trigger+xml\napplication/vnd.oma.bcast.imd+xml\n\ application/vnd.oma.bcast.ltkm\napplication/vnd.oma.bcast.notification+xml\napplication/vnd.oma.bcast.provisioningtrigger\n\ application/vnd.oma.bcast.sgboot\napplication/vnd.oma.bcast.sgdd+xml\napplication/vnd.oma.bcast.sgdu\n\ application/vnd.oma.bcast.simple-symbol-container\napplication/vnd.oma.bcast.smartcard-trigger+xml\n\ application/vnd.oma.bcast.sprov+xml\napplication/vnd.oma.bcast.stkm\napplication/vnd.oma.cab-address-book+xml\n\ application/vnd.oma.cab-feature-handler+xml\napplication/vnd.oma.cab-pcc+xml\n\ application/vnd.oma.cab-subs-invite+xml\napplication/vnd.oma.cab-user-prefs+xml\n\ application/vnd.oma.dcd\napplication/vnd.oma.dcdc\napplication/vnd.oma.dd2+xml\t\ \t\tdd2\napplication/vnd.oma.drm.risd+xml\napplication/vnd.oma.group-usage-list+xml\n\ application/vnd.oma.lwm2m+json\napplication/vnd.oma.lwm2m+tlv\napplication/vnd.oma.pal+xml\n\ application/vnd.oma.poc.detailed-progress-report+xml\napplication/vnd.oma.poc.final-report+xml\n\ application/vnd.oma.poc.groups+xml\napplication/vnd.oma.poc.invocation-descriptor+xml\n\ application/vnd.oma.poc.optimized-progress-report+xml\napplication/vnd.oma.push\n\ application/vnd.oma.scidm.messages+xml\napplication/vnd.oma.xcap-directory+xml\n\ application/vnd.oma-scws-config\napplication/vnd.oma-scws-http-request\napplication/vnd.oma-scws-http-response\n\ application/vnd.omads-email+xml\napplication/vnd.omads-file+xml\napplication/vnd.omads-folder+xml\n\ application/vnd.omaloc-supl-init\napplication/vnd.onepager\t\t\ttam\napplication/vnd.onepagertamp\t\ \t\ttamp\napplication/vnd.onepagertamx\t\t\ttamx\napplication/vnd.onepagertat\t\ \t\ttat\napplication/vnd.onepagertatp\t\t\ttatp\napplication/vnd.onepagertatx\t\ \t\ttatx\napplication/vnd.openblox.game+xml\t\tobgx\napplication/vnd.openblox.game-binary\t\ \tobg\napplication/vnd.openeye.oeb\t\t\toeb\napplication/vnd.openofficeorg.extension\t\ \toxt\napplication/vnd.openstreetmap.data+xml\t\tosm\napplication/vnd.openxmlformats-officedocument.custom-properties+xml\n\ application/vnd.openxmlformats-officedocument.customXmlProperties+xml\napplication/vnd.openxmlformats-officedocument.drawing+xml\n\ application/vnd.openxmlformats-officedocument.drawingml.chart+xml\napplication/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml\n\ application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml\napplication/vnd.openxmlformats-officedocument.drawingml.diagramData+xml\n\ application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml\napplication/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml\n\ application/vnd.openxmlformats-officedocument.extended-properties+xml\napplication/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.comments+xml\napplication/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.presProps+xml\napplication/vnd.openxmlformats-officedocument.presentationml.presentation\ \ pptx\napplication/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.slide\tsldx\napplication/vnd.openxmlformats-officedocument.presentationml.slide+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.slideshow\tppsx\n\ application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.tags+xml\napplication/vnd.openxmlformats-officedocument.presentationml.template\t\ potx\napplication/vnd.openxmlformats-officedocument.presentationml.template.main+xml\n\ application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml\napplication/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml\napplication/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml\napplication/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\txlsx\napplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\napplication/vnd.openxmlformats-officedocument.spreadsheetml.table+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.template\txltx\napplication/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml\napplication/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml\n\ application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\napplication/vnd.openxmlformats-officedocument.theme+xml\n\ application/vnd.openxmlformats-officedocument.themeOverride+xml\napplication/vnd.openxmlformats-officedocument.vmlDrawing\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.document\tdocx\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml\napplication/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\napplication/vnd.openxmlformats-officedocument.wordprocessingml.template\t\ dotx\napplication/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml\n\ application/vnd.openxmlformats-package.core-properties+xml\napplication/vnd.openxmlformats-package.digital-signature-xmlsignature+xml\n\ application/vnd.openxmlformats-package.relationships+xml\napplication/vnd.oracle.resource+json\n\ application/vnd.orange.indata\napplication/vnd.osa.netdeploy\t\t\tndc\napplication/vnd.osgeo.mapguide.package\t\ \tmgp\n# jar: application/x-java-archive\napplication/vnd.osgi.bundle\napplication/vnd.osgi.dp\t\ \t\t\tdp\napplication/vnd.osgi.subsystem\t\t\tesa\napplication/vnd.otps.ct-kip+xml\n\ application/vnd.oxli.countgraph\t\t\toxlicg\napplication/vnd.pagerduty+json\n\ application/vnd.palm\t\t\t\tprc pdb pqa oprc\napplication/vnd.panoply\t\t\t\t\ plp\napplication/vnd.paos+xml\napplication/vnd.pawaafile\t\t\tpaw\napplication/vnd.pcos\n\ application/vnd.pg.format\t\t \tstr\napplication/vnd.pg.osasli\t\t\tei6\napplication/vnd.piaccess.application-license\t\ pil\napplication/vnd.picsel\t\t\t\tefif\napplication/vnd.pmi.widget\t\t\twg\n\ application/vnd.poc.group-advertisement+xml\napplication/vnd.pocketlearn\t\t\t\ plf\napplication/vnd.powerbuilder6\t\t\tpbd\napplication/vnd.powerbuilder6-s\n\ application/vnd.powerbuilder7\napplication/vnd.powerbuilder7-s\napplication/vnd.powerbuilder75\n\ application/vnd.powerbuilder75-s\napplication/vnd.preminet\t\t\tpreminet\napplication/vnd.previewsystems.box\t\ \tbox vbox\napplication/vnd.proteus.magazine\t\tmgz\napplication/vnd.publishare-delta-tree\t\ \tqps\n# pti: image/prs.pti\napplication/vnd.pvi.ptid1\t\t\tptid\napplication/vnd.pwg-multiplexed\n\ application/vnd.pwg-xhtml-print+xml\napplication/vnd.qualcomm.brew-app-res\t\t\ bar\napplication/vnd.quarantainenet\napplication/vnd.Quark.QuarkXPress\t\tqxd\ \ qxt qwd qwt qxl qxb\napplication/vnd.quobject-quoxdocument\t\tquox quiz\napplication/vnd.radisys.moml+xml\n\ application/vnd.radisys.msml-audit-conf+xml\napplication/vnd.radisys.msml-audit-conn+xml\n\ application/vnd.radisys.msml-audit-dialog+xml\napplication/vnd.radisys.msml-audit-stream+xml\n\ application/vnd.radisys.msml-audit+xml\napplication/vnd.radisys.msml-conf+xml\n\ application/vnd.radisys.msml-dialog-base+xml\napplication/vnd.radisys.msml-dialog-fax-detect+xml\n\ application/vnd.radisys.msml-dialog-fax-sendrecv+xml\napplication/vnd.radisys.msml-dialog-group+xml\n\ application/vnd.radisys.msml-dialog-speech+xml\napplication/vnd.radisys.msml-dialog-transform+xml\n\ application/vnd.radisys.msml-dialog+xml\napplication/vnd.radisys.msml+xml\napplication/vnd.rainstor.data\t\ \t\ttree\napplication/vnd.rapid\napplication/vnd.rar\t\t\t\trar\napplication/vnd.realvnc.bed\t\ \t\tbed\napplication/vnd.recordare.musicxml\t\tmxl\napplication/vnd.recordare.musicxml+xml\n\ application/vnd.RenLearn.rlprint\napplication/vnd.rig.cryptonote\t\t\tcryptonote\n\ application/vnd.route66.link66+xml\t\tlink66\n# gbr: application/rpki-ghostbusters\n\ application/vnd.rs-274x\napplication/vnd.ruckus.download\napplication/vnd.s3sms\n\ application/vnd.sailingtracker.track\t\tst\napplication/vnd.sbm.cid\napplication/vnd.sbm.mid2\n\ application/vnd.scribus\t\t\t\tscd sla slaz\napplication/vnd.sealed.3df\t\t\t\ s3df\napplication/vnd.sealed.csf\t\t\tscsf\napplication/vnd.sealed.doc\t\t\tsdoc\ \ sdo s1w\napplication/vnd.sealed.eml\t\t\tseml sem\napplication/vnd.sealed.mht\t\ \t\tsmht smh\napplication/vnd.sealed.net\n# spp: application/scvp-vp-response\n\ application/vnd.sealed.ppt\t\t\tsppt s1p\napplication/vnd.sealed.tiff\t\t\tstif\n\ application/vnd.sealed.xls\t\t\tsxls sxl s1e\n# stm: audio/x-stm\napplication/vnd.sealedmedia.softseal.html\t\ stml s1h\napplication/vnd.sealedmedia.softseal.pdf\tspdf spd s1a\napplication/vnd.seemail\t\ \t\t\tsee\napplication/vnd.sema\t\t\t\tsema\napplication/vnd.semd\t\t\t\tsemd\n\ application/vnd.semf\t\t\t\tsemf\napplication/vnd.shana.informed.formdata\t\t\ ifm\napplication/vnd.shana.informed.formtemplate\titp\napplication/vnd.shana.informed.interchange\t\ iif\napplication/vnd.shana.informed.package\t\tipk\napplication/vnd.SimTech-MindMapper\t\ \ttwd twds\napplication/vnd.siren+json\napplication/vnd.smaf\t\t\t\tmmf\napplication/vnd.smart.notebook\t\ \t\tnotebook\napplication/vnd.smart.teacher\t\t\tteacher\napplication/vnd.software602.filler.form+xml\t\ fo\napplication/vnd.software602.filler.form-xml-zip\tzfo\napplication/vnd.solent.sdkm+xml\t\ \t\tsdkm sdkd\napplication/vnd.spotfire.dxp\t\t\tdxp\napplication/vnd.spotfire.sfs\t\ \t\tsfs\napplication/vnd.sss-cod\napplication/vnd.sss-dtf\napplication/vnd.sss-ntf\n\ application/vnd.stepmania.package\t\tsmzip\napplication/vnd.stepmania.stepchart\t\ \tsm\napplication/vnd.street-stream\napplication/vnd.sun.wadl+xml\t\t\twadl\n\ application/vnd.sus-calendar\t\t\tsus susp\napplication/vnd.svd\napplication/vnd.swiftview-ics\n\ application/vnd.syncml+xml\t\t\txsm\napplication/vnd.syncml.dm+wbxml\t\t\tbdm\n\ application/vnd.syncml.dm+xml\t\t\txdm\napplication/vnd.syncml.dm.notification\n\ application/vnd.syncml.dmddf+wbxml\napplication/vnd.syncml.dmddf+xml\t\tddf\n\ application/vnd.syncml.dmtnds+wbxml\napplication/vnd.syncml.dmtnds+xml\napplication/vnd.syncml.ds.notification\n\ application/vnd.tableschema+json\napplication/vnd.tao.intent-module-archive\t\ tao\napplication/vnd.tcpdump.pcap\t\t\tpcap cap dmp\napplication/vnd.theqvd\t\t\ \t\tqvd\napplication/vnd.tmd.mediaflex.api+xml\napplication/vnd.tml\t\t\t\tvfr\ \ viaframe\napplication/vnd.tmobile-livetv\t\t\ttmo\napplication/vnd.tri.onesource\n\ application/vnd.trid.tpt\t\t\ttpt\napplication/vnd.triscape.mxs\t\t\tmxs\napplication/vnd.trueapp\t\ \t\t\ttra\napplication/vnd.truedoc\n# cab: application/vnd.ms-cab-compressed\n\ application/vnd.ubisoft.webplayer\napplication/vnd.ufdl\t\t\t\tufdl ufd frm\n\ application/vnd.uiq.theme\t\t\tutz\napplication/vnd.umajin\t\t\t\tumj\napplication/vnd.unity\t\ \t\t\tunityweb\napplication/vnd.uoml+xml\t\t\tuoml uo\napplication/vnd.uplanet.alert\n\ application/vnd.uplanet.alert-wbxml\napplication/vnd.uplanet.bearer-choice\napplication/vnd.uplanet.bearer-choice-wbxml\n\ application/vnd.uplanet.cacheop\napplication/vnd.uplanet.cacheop-wbxml\napplication/vnd.uplanet.channel\n\ application/vnd.uplanet.channel-wbxml\napplication/vnd.uplanet.list\napplication/vnd.uplanet.list-wbxml\n\ application/vnd.uplanet.listcmd\napplication/vnd.uplanet.listcmd-wbxml\napplication/vnd.uplanet.signal\n\ application/vnd.uri-map\t\t\t\turim urimap\napplication/vnd.valve.source.material\t\ \tvmt\napplication/vnd.vcx\t\t\t\tvcx\n# sxi: application/vnd.sun.xml.impress\n\ application/vnd.vd-study\t\t\tmxi study-inter model-inter\n# mcd: application/vnd.mcd\n\ application/vnd.vectorworks\t\t\tvwx\napplication/vnd.vel+json\napplication/vnd.verimatrix.vcas\n\ application/vnd.vidsoft.vidconference\t\tvsc\napplication/vnd.visio\t\t\t\tvsd\ \ vst vsw vss\napplication/vnd.visionary\t\t\tvis\n# vsc: application/vnd.vidsoft.vidconference\n\ application/vnd.vividence.scriptfile\napplication/vnd.vsf\t\t\t\tvsf\napplication/vnd.wap.sic\t\ \t\t\tsic\napplication/vnd.wap.slc\t\t\t\tslc\napplication/vnd.wap.wbxml\t\t\t\ wbxml\napplication/vnd.wap.wmlc\t\t\twmlc\napplication/vnd.wap.wmlscriptc\t\t\t\ wmlsc\napplication/vnd.webturbo\t\t\twtb\napplication/vnd.wfa.p2p\t\t\t\tp2p\n\ application/vnd.wfa.wsc\t\t\t\twsc\napplication/vnd.windows.devicepairing\napplication/vnd.wmc\t\ \t\t\twmc\napplication/vnd.wmf.bootstrap\n# nb: application/mathematica for now\n\ application/vnd.wolfram.mathematica\napplication/vnd.wolfram.mathematica.package\t\ m\napplication/vnd.wolfram.player\t\t\tnbp\napplication/vnd.wordperfect\t\t\t\ wpd\napplication/vnd.wqd\t\t\t\twqd\napplication/vnd.wrq-hp3000-labelled\napplication/vnd.wt.stf\t\ \t\t\tstf\napplication/vnd.wv.csp+xml\napplication/vnd.wv.csp+wbxml\t\t\twv\n\ application/vnd.wv.ssp+xml\napplication/vnd.xacml+json\napplication/vnd.xara\t\ \t\t\txar\napplication/vnd.xfdl\t\t\t\txfdl xfd\napplication/vnd.xfdl.webform\n\ application/vnd.xmi+xml\napplication/vnd.xmpie.cpkg\t\t\tcpkg\napplication/vnd.xmpie.dpkg\t\ \t\tdpkg\n# dpkg: application/vnd.xmpie.dpkg\napplication/vnd.xmpie.plan\napplication/vnd.xmpie.ppkg\t\ \t\tppkg\napplication/vnd.xmpie.xlim\t\t\txlim\napplication/vnd.yamaha.hv-dic\t\ \t\thvd\napplication/vnd.yamaha.hv-script\t\thvs\napplication/vnd.yamaha.hv-voice\t\ \t\thvp\napplication/vnd.yamaha.openscoreformat\t\tosf\napplication/vnd.yamaha.openscoreformat.osfpvg+xml\n\ application/vnd.yamaha.remote-setup\napplication/vnd.yamaha.smaf-audio\t\tsaf\n\ application/vnd.yamaha.smaf-phrase\t\tspf\napplication/vnd.yamaha.through-ngn\n\ application/vnd.yamaha.tunnel-udpencap\napplication/vnd.yaoweme\t\t\t\tyme\napplication/vnd.yellowriver-custom-menu\t\ \tcmp\napplication/vnd.zul\t\t\t\tzir zirz\napplication/vnd.zzazz.deck+xml\t\t\ \tzaz\napplication/voicexml+xml\t\t\tvxml\napplication/vq-rtcp-xr\napplication/watcherinfo+xml\t\ \t\twif\napplication/whoispp-query\napplication/whoispp-response\napplication/widget\t\ \t\t\twgt\napplication/wita\napplication/wordperfect5.1\napplication/wsdl+xml\t\ \t\t\twsdl\napplication/wspolicy+xml\t\t\twspolicy\n# yes, this *is* IANA registered\ \ despite of x-\napplication/x-www-form-urlencoded\napplication/x400-bp\napplication/xacml+xml\n\ application/xcap-att+xml\t\t\txav\napplication/xcap-caps+xml\t\t\txca\napplication/xcap-diff+xml\t\ \t\txdf\napplication/xcap-el+xml\t\t\t\txel\napplication/xcap-error+xml\t\t\t\ xer\napplication/xcap-ns+xml\t\t\t\txns\napplication/xcon-conference-info-diff+xml\n\ application/xcon-conference-info+xml\napplication/xenc+xml\napplication/xhtml+xml\t\ \t\t\txhtml xhtm xht\n# xml, xsd, rng: text/xml\napplication/xml\n# mod: audio/x-mod\n\ application/xml-dtd\t\t\t\tdtd\n# ent: text/xml-external-parsed-entity\napplication/xml-external-parsed-entity\n\ application/xml-patch+xml\napplication/xmpp+xml\napplication/xop+xml\t\t\t\txop\n\ application/xslt+xml\t\t\t\txsl xslt\napplication/xv+xml\t\t\t\tmxml xhvml xvml\ \ xvm\napplication/yang\t\t\t\tyang\napplication/yang-data+json\napplication/yang-data+xml\n\ application/yang-patch+json\napplication/yang-patch+xml\napplication/yin+xml\t\ \t\t\tyin\napplication/zip\t\t\t\t\tzip\napplication/zlib\naudio/1d-interleaved-parityfec\n\ audio/32kadpcm\t\t\t\t\t726\n# 3gp, 3gpp: video/3gpp\naudio/3gpp\n# 3g2, 3gpp2:\ \ video/3gpp2\naudio/3gpp2\naudio/ac3\t\t\t\t\tac3\naudio/AMR\t\t\t\t\tamr\naudio/AMR-WB\t\ \t\t\t\tawb\naudio/amr-wb+\naudio/aptx\naudio/asc\t\t\t\t\tacn\n# aa3, omg: audio/ATRAC3\n\ audio/ATRAC-ADVANCED-LOSSLESS\t\t\taal\n# aa3, omg: audio/ATRAC3\naudio/ATRAC-X\t\ \t\t\t\tatx\naudio/ATRAC3\t\t\t\t\tat3 aa3 omg\naudio/basic\t\t\t\t\tau snd\n\ audio/BV16\naudio/BV32\naudio/clearmode\naudio/CN\naudio/DAT12\naudio/dls\t\t\t\ \t\tdls\naudio/dsr-es201108\naudio/dsr-es202050\naudio/dsr-es202211\naudio/dsr-es202212\n\ audio/DV\naudio/DVI4\naudio/eac3\naudio/encaprtp\naudio/EVRC\t\t\t\t\tevc\n# qcp:\ \ audio/qcelp\naudio/EVRC-QCP\naudio/EVRC0\naudio/EVRC1\naudio/EVRCB\t\t\t\t\t\ evb\naudio/EVRCB0\naudio/EVRCB1\naudio/EVRCNW\t\t\t\t\tenw\naudio/EVRCNW0\naudio/EVRCNW1\n\ audio/EVRCWB\t\t\t\t\tevw\naudio/EVRCWB0\naudio/EVRCWB1\naudio/EVS\naudio/example\n\ audio/fwdred\naudio/G711-0\naudio/G719\naudio/G722\naudio/G7221\naudio/G723\n\ audio/G726-16\naudio/G726-24\naudio/G726-32\naudio/G726-40\naudio/G728\naudio/G729\n\ audio/G7291\naudio/G729D\naudio/G729E\naudio/GSM\naudio/GSM-EFR\naudio/GSM-HR-08\n\ audio/iLBC\t\t\t\t\tlbc\naudio/ip-mr_v2.5\n# wav: audio/x-wav\naudio/L16\t\t\t\ \t\tl16\naudio/L20\naudio/L24\naudio/L8\naudio/LPC\naudio/MELP\naudio/MELP600\n\ audio/MELP1200\naudio/MELP2400\naudio/mobile-xmf\t\t\t\tmxmf\n# mp4, mpg4: video/mp4,\ \ see RFC 4337\naudio/mp4\t\t\t\t\tm4a\naudio/MP4A-LATM\naudio/MPA\naudio/mpa-robust\n\ audio/mpeg\t\t\t\t\tmp3 mpga mp1 mp2\naudio/mpeg4-generic\naudio/ogg\t\t\t\t\t\ oga ogg opus spx\naudio/opus\naudio/parityfec\naudio/PCMA\naudio/PCMA-WB\naudio/PCMU\n\ audio/PCMU-WB\naudio/prs.sid\t\t\t\t\tsid psid\naudio/qcelp\t\t\t\t\tqcp\naudio/raptorfec\n\ audio/RED\naudio/rtp-enc-aescm128\naudio/rtp-midi\naudio/rtploopback\naudio/rtx\n\ audio/SMV\t\t\t\t\tsmv\n# qcp: audio/qcelp, see RFC 3625\naudio/SMV-QCP\naudio/SMV0\n\ # mid: audio/midi\naudio/sp-midi\naudio/speex\naudio/t140c\naudio/t38\naudio/telephone-event\n\ audio/tone\naudio/UEMCLIP\naudio/ulpfec\naudio/VDVI\naudio/VMR-WB\naudio/vnd.3gpp.iufp\n\ audio/vnd.4SB\naudio/vnd.audikoz\t\t\t\tkoz\naudio/vnd.CELP\naudio/vnd.cisco.nse\n\ audio/vnd.cmles.radio-events\naudio/vnd.cns.anp1\naudio/vnd.cns.inf1\naudio/vnd.dece.audio\t\ \t\t\tuva uvva\naudio/vnd.digital-winds\t\t\t\teol\naudio/vnd.dlna.adts\naudio/vnd.dolby.heaac.1\n\ audio/vnd.dolby.heaac.2\naudio/vnd.dolby.mlp\t\t\t\tmlp\naudio/vnd.dolby.mps\n\ audio/vnd.dolby.pl2\naudio/vnd.dolby.pl2x\naudio/vnd.dolby.pl2z\naudio/vnd.dolby.pulse.1\n\ audio/vnd.dra\n# wav: audio/x-wav, cpt: application/mac-compactpro\naudio/vnd.dts\t\ \t\t\t\tdts\naudio/vnd.dts.hd\t\t\t\tdtshd\n# dvb: video/vnd.dvb.file\naudio/vnd.dvb.file\n\ audio/vnd.everad.plj\t\t\t\tplj\n# rm: audio/x-pn-realaudio\naudio/vnd.hns.audio\n\ audio/vnd.lucent.voice\t\t\t\tlvp\naudio/vnd.ms-playready.media.pya\t\tpya\n#\ \ mxmf: audio/mobile-xmf\naudio/vnd.nokia.mobile-xmf\naudio/vnd.nortel.vbk\t\t\ \t\tvbk\naudio/vnd.nuera.ecelp4800\t\t\tecelp4800\naudio/vnd.nuera.ecelp7470\t\ \t\tecelp7470\naudio/vnd.nuera.ecelp9600\t\t\tecelp9600\naudio/vnd.octel.sbc\n\ # audio/vnd.qcelp deprecated in favour of audio/qcelp\naudio/vnd.rhetorex.32kadpcm\n\ audio/vnd.rip\t\t\t\t\trip\naudio/vnd.sealedmedia.softseal.mpeg\t\tsmp3 smp s1m\n\ audio/vnd.vmx.cvsd\naudio/vorbis\naudio/vorbis-config\nfont/collection\t\t\t\t\ \tttc\nfont/otf\t\t\t\t\totf\nfont/sfnt\nfont/ttf\t\t\t\t\tttf\nfont/woff\t\t\t\ \t\twoff\nfont/woff2\t\t\t\t\twoff2\nimage/bmp\t\t\t\t\tbmp dib\nimage/cgm\t\t\ \t\t\tcgm\nimage/dicom-rle\t\t\t\t\tdrle\nimage/emf\t\t\t\t\temf\nimage/example\n\ image/fits\t\t\t\t\tfits fit fts\nimage/g3fax\nimage/gif\t\t\t\t\tgif\nimage/ief\t\ \t\t\t\tief\nimage/jls\t\t\t\t\tjls\nimage/jp2\t\t\t\t\tjp2 jpg2\nimage/jpeg\t\ \t\t\t\tjpg jpeg jpe jfif\nimage/jpm\t\t\t\t\tjpm jpgm\nimage/jpx\t\t\t\t\tjpx\ \ jpf\nimage/ktx\t\t\t\t\tktx\nimage/naplps\nimage/png\t\t\t\t\tpng\nimage/prs.btif\t\ \t\t\t\tbtif btf\nimage/prs.pti\t\t\t\t\tpti\nimage/pwg-raster\nimage/svg+xml\t\ \t\t\t\tsvg svgz\nimage/t38\t\t\t\t\tt38\nimage/tiff\t\t\t\t\ttiff tif\nimage/tiff-fx\t\ \t\t\t\ttfx\nimage/vnd.adobe.photoshop\t\t\tpsd\nimage/vnd.airzip.accelerator.azv\t\ \tazv\nimage/vnd.cns.inf2\nimage/vnd.dece.graphic\t\t\t\tuvi uvvi uvg uvvg\nimage/vnd.djvu\t\ \t\t\t\tdjvu djv\n# sub: text/vnd.dvb.subtitle\nimage/vnd.dvb.subtitle\nimage/vnd.dwg\t\ \t\t\t\tdwg\nimage/vnd.dxf\t\t\t\t\tdxf\nimage/vnd.fastbidsheet\t\t\t\tfbs\nimage/vnd.fpx\t\ \t\t\t\tfpx\nimage/vnd.fst\t\t\t\t\tfst\nimage/vnd.fujixerox.edmics-mmr\t\t\t\ mmr\nimage/vnd.fujixerox.edmics-rlc\t\t\trlc\nimage/vnd.globalgraphics.pgb\t\t\ \tpgb\nimage/vnd.microsoft.icon\t\t\tico\nimage/vnd.mix\nimage/vnd.mozilla.apng\t\ \t\t\tapng\nimage/vnd.ms-modi\t\t\t\tmdi\nimage/vnd.net-fpx\nimage/vnd.radiance\t\ \t\t\thdr rgbe xyze\nimage/vnd.sealed.png\t\t\t\tspng spn s1n\nimage/vnd.sealedmedia.softseal.gif\t\ \tsgif sgi s1g\nimage/vnd.sealedmedia.softseal.jpg\t\tsjpg sjp s1j\nimage/vnd.svf\n\ image/vnd.tencent.tap\t\t\t\ttap\nimage/vnd.valve.source.texture\t\t\tvtf\nimage/vnd.wap.wbmp\t\ \t\t\twbmp\nimage/vnd.xiff\t\t\t\t\txif\nimage/vnd.zbrush.pcx\t\t\t\tpcx\nimage/wmf\t\ \t\t\t\twmf\nmessage/CPIM\nmessage/delivery-status\nmessage/disposition-notification\n\ message/example\nmessage/external-body\nmessage/feedback-report\nmessage/global\t\ \t\t\t\tu8msg\nmessage/global-delivery-status\t\t\tu8dsn\nmessage/global-disposition-notification\t\ \tu8mdn\nmessage/global-headers\t\t\t\tu8hdr\nmessage/http\n# cl: application/simple-filter+xml\n\ message/imdn+xml\n# message/news obsoleted by message/rfc822\nmessage/partial\n\ message/rfc822\t\t\t\t\teml mail art\nmessage/s-http\nmessage/sip\nmessage/sipfrag\n\ message/tracking-status\nmessage/vnd.si.simp\n# wsc: application/vnd.wfa.wsc\n\ message/vnd.wfa.wsc\nmodel/example\nmodel/gltf+json\t\t\t\t\tgltf\nmodel/iges\t\ \t\t\t\tigs iges\nmodel/mesh\t\t\t\t\tmsh mesh silo\nmodel/vnd.collada+xml\t\t\ \t\tdae\nmodel/vnd.dwf\t\t\t\t\tdwf\n# 3dml, 3dm: text/vnd.in3d.3dml\nmodel/vnd.flatland.3dml\n\ model/vnd.gdl\t\t\t\t\tgdl gsm win dor lmp rsm msm ism\nmodel/vnd.gs-gdl\nmodel/vnd.gtw\t\ \t\t\t\tgtw\nmodel/vnd.moml+xml\t\t\t\tmoml\nmodel/vnd.mts\t\t\t\t\tmts\nmodel/vnd.opengex\t\ \t\t\togex\nmodel/vnd.parasolid.transmit.binary\t\tx_b xmt_bin\nmodel/vnd.parasolid.transmit.text\t\ \tx_t xmt_txt\nmodel/vnd.rosette.annotated-data-model\nmodel/vnd.valve.source.compiled-map\t\ \tbsp\nmodel/vnd.vtu\t\t\t\t\tvtu\nmodel/vrml\t\t\t\t\twrl vrml\n# x3db: model/x3d+xml\n\ model/x3d+fastinfoset\n# x3d: application/vnd.hzn-3d-crossword\nmodel/x3d+xml\t\ \t\t\t\tx3db\nmodel/x3d-vrml\t\t\t\t\tx3dv x3dvz\nmultipart/alternative\nmultipart/appledouble\n\ multipart/byteranges\nmultipart/digest\nmultipart/encrypted\nmultipart/form-data\n\ multipart/header-set\nmultipart/mixed\nmultipart/parallel\nmultipart/related\n\ multipart/report\nmultipart/signed\nmultipart/vnd.bint.med-plus\t\t\tbmed\nmultipart/voice-message\t\ \t\t\tvpm\nmultipart/x-mixed-replace\ntext/1d-interleaved-parityfec\ntext/cache-manifest\t\ \t\t\tappcache manifest\ntext/calendar\t\t\t\t\tics ifb\ntext/css\t\t\t\t\tcss\n\ text/csv\t\t\t\t\tcsv\ntext/csv-schema\t\t\t\t\tcsvs\ntext/directory\ntext/dns\t\ \t\t\t\tsoa zone\ntext/encaprtp\n# text/ecmascript obsoleted by application/ecmascript\n\ text/enriched\ntext/example\ntext/fwdred\ntext/grammar-ref-list\ntext/html\t\t\ \t\t\thtml htm\n# text/javascript obsoleted by application/javascript\ntext/jcr-cnd\t\ \t\t\t\tcnd\ntext/markdown\t\t\t\t\tmarkdown md\ntext/mizar\t\t\t\t\tmiz\ntext/n3\t\ \t\t\t\t\tn3\ntext/parameters\ntext/parityfec\ntext/plain\t\ttxt asc text pm el\ \ c h cc hh cxx hxx f90 conf log\ntext/provenance-notation\t\t\tprovn\ntext/prs.fallenstein.rst\t\ \t\trst\ntext/prs.lines.tag\t\t\t\ttag dsc\ntext/prs.prop.logic\ntext/raptorfec\n\ text/RED\ntext/rfc822-headers\ntext/richtext\t\t\t\t\trtx\n# rtf: application/rtf\n\ text/rtf\ntext/rtp-enc-aescm128\ntext/rtploopback\ntext/rtx\ntext/sgml\t\t\t\t\ \tsgml sgm\ntext/strings\ntext/t140\ntext/tab-separated-values\t\t\ttsv\ntext/troff\t\ \t\t\t\tt tr roff\ntext/turtle\t\t\t\t\tttl\ntext/ulpfec\ntext/uri-list\t\t\t\t\ \turis uri\ntext/vcard\t\t\t\t\tvcf vcard\ntext/vnd.a\t\t\t\t\ta\ntext/vnd.abc\t\ \t\t\t\tabc\ntext/vnd.ascii-art\t\t\t\tascii\n# curl: application/vnd.curl\ntext/vnd.curl\n\ text/vnd.debian.copyright\t\t\tcopyright\ntext/vnd.DMClientScript\t\t\t\tdms\n\ text/vnd.dvb.subtitle\t\t\t\tsub\ntext/vnd.esmertec.theme-descriptor\t\tjtd\n\ text/vnd.fly\t\t\t\t\tfly\ntext/vnd.fmi.flexstor\t\t\t\tflx\ntext/vnd.graphviz\t\ \t\t\tgv dot\ntext/vnd.in3d.3dml\t\t\t\t3dml 3dm\ntext/vnd.in3d.spot\t\t\t\tspot\ \ spo\ntext/vnd.IPTC.NewsML\ntext/vnd.IPTC.NITF\ntext/vnd.latex-z\ntext/vnd.motorola.reflex\n\ text/vnd.ms-mediapackage\t\t\tmpf\ntext/vnd.net2phone.commcenter.command\t\tccc\n\ text/vnd.radisys.msml-basic-layout\ntext/vnd.si.uricatalogue\t\t\turic\ntext/vnd.sun.j2me.app-descriptor\t\ \tjad\ntext/vnd.trolltech.linguist\t\t\tts\ntext/vnd.wap.si\t\t\t\t\tsi\ntext/vnd.wap.sl\t\ \t\t\t\tsl\ntext/vnd.wap.wml\t\t\t\twml\ntext/vnd.wap.wmlscript\t\t\t\twmls\n\ text/xml\t\t\t\t\txml xsd rng\ntext/xml-external-parsed-entity\t\t\tent\nvideo/1d-interleaved-parityfec\n\ video/3gpp\t\t\t\t\t3gp 3gpp\nvideo/3gpp2\t\t\t\t\t3g2 3gpp2\nvideo/3gpp-tt\n\ video/BMPEG\nvideo/BT656\nvideo/CelB\nvideo/DV\nvideo/encaprtp\nvideo/example\n\ video/H261\nvideo/H263\nvideo/H263-1998\nvideo/H263-2000\nvideo/H264\nvideo/H264-RCDO\n\ video/H264-SVC\nvideo/H265\nvideo/iso.segment\t\t\t\tm4s\nvideo/JPEG\nvideo/jpeg2000\n\ video/mj2\t\t\t\t\tmj2 mjp2\nvideo/MP1S\nvideo/MP2P\nvideo/MP2T\nvideo/mp4\t\t\ \t\t\tmp4 mpg4 m4v\nvideo/MP4V-ES\nvideo/mpeg\t\t\t\t\tmpeg mpg mpe m1v m2v\n\ video/mpeg4-generic\nvideo/MPV\nvideo/nv\nvideo/ogg\t\t\t\t\togv\nvideo/parityfec\n\ video/pointer\nvideo/quicktime\t\t\t\t\tmov qt\nvideo/raptorfec\nvideo/raw\nvideo/rtp-enc-aescm128\n\ video/rtploopback\nvideo/rtx\nvideo/SMPTE292M\nvideo/ulpfec\nvideo/vc1\nvideo/vnd.CCTV\n\ video/vnd.dece.hd\t\t\t\tuvh uvvh\nvideo/vnd.dece.mobile\t\t\t\tuvm uvvm\nvideo/vnd.dece.mp4\t\ \t\t\tuvu uvvu\nvideo/vnd.dece.pd\t\t\t\tuvp uvvp\nvideo/vnd.dece.sd\t\t\t\tuvs\ \ uvvs\nvideo/vnd.dece.video\t\t\t\tuvv uvvv\nvideo/vnd.directv.mpeg\nvideo/vnd.directv.mpeg-tts\n\ video/vnd.dlna.mpeg-tts\nvideo/vnd.dvb.file\t\t\t\tdvb\nvideo/vnd.fvt\t\t\t\t\t\ fvt\n# rm: audio/x-pn-realaudio\nvideo/vnd.hns.video\nvideo/vnd.iptvforum.1dparityfec-1010\n\ video/vnd.iptvforum.1dparityfec-2005\nvideo/vnd.iptvforum.2dparityfec-1010\nvideo/vnd.iptvforum.2dparityfec-2005\n\ video/vnd.iptvforum.ttsavc\nvideo/vnd.iptvforum.ttsmpeg2\nvideo/vnd.motorola.video\n\ video/vnd.motorola.videop\nvideo/vnd.mpegurl\t\t\t\tmxu m4u\nvideo/vnd.ms-playready.media.pyv\t\ \tpyv\nvideo/vnd.nokia.interleaved-multimedia\t\tnim\nvideo/vnd.nokia.videovoip\n\ # mp4: video/mp4\nvideo/vnd.objectvideo\nvideo/vnd.radgamettools.bink\t\t\tbik\ \ bk2\nvideo/vnd.radgamettools.smacker\t\t\tsmk\nvideo/vnd.sealed.mpeg1\t\t\t\t\ smpg s11\n# smpg: video/vnd.sealed.mpeg1\nvideo/vnd.sealed.mpeg4\t\t\t\ts14\n\ video/vnd.sealed.swf\t\t\t\tsswf ssw\nvideo/vnd.sealedmedia.softseal.mov\t\tsmov\ \ smo s1q\n# uvu, uvvu: video/vnd.dece.mp4\nvideo/vnd.uvvu.mp4\nvideo/vnd.vivo\t\ \t\t\t\tviv\nvideo/VP8\n\n# Non-IANA types\n\napplication/mac-compactpro\t\t\t\ cpt\napplication/metalink+xml\t\t\tmetalink\napplication/owl+xml\t\t\t\towx\n\ application/rss+xml\t\t\t\trss\napplication/vnd.android.package-archive\t\tapk\n\ application/vnd.oma.dd+xml\t\t\tdd\napplication/vnd.oma.drm.content\t\t\tdcf\n\ # odf: application/vnd.oasis.opendocument.formula\napplication/vnd.oma.drm.dcf\t\ \t\to4a o4v\napplication/vnd.oma.drm.message\t\t\tdm\napplication/vnd.oma.drm.rights+wbxml\t\ \tdrc\napplication/vnd.oma.drm.rights+xml\t\tdr\napplication/vnd.sun.xml.calc\t\ \t\tsxc\napplication/vnd.sun.xml.calc.template\t\tstc\napplication/vnd.sun.xml.draw\t\ \t\tsxd\napplication/vnd.sun.xml.draw.template\t\tstd\napplication/vnd.sun.xml.impress\t\ \t\tsxi\napplication/vnd.sun.xml.impress.template\tsti\napplication/vnd.sun.xml.math\t\ \t\tsxm\napplication/vnd.sun.xml.writer\t\t\tsxw\napplication/vnd.sun.xml.writer.global\t\ \tsxg\napplication/vnd.sun.xml.writer.template\t\tstw\napplication/vnd.symbian.install\t\ \t\tsis\napplication/vnd.wap.mms-message\t\t\tmms\napplication/x-annodex\t\t\t\ \tanx\napplication/x-bcpio\t\t\t\tbcpio\napplication/x-bittorrent\t\t\ttorrent\n\ application/x-bzip2\t\t\t\tbz2\napplication/x-cdlink\t\t\t\tvcd\napplication/x-chrome-extension\t\ \t\tcrx\napplication/x-cpio\t\t\t\tcpio\napplication/x-csh\t\t\t\tcsh\napplication/x-director\t\ \t\t\tdcr dir dxr\napplication/x-dvi\t\t\t\tdvi\napplication/x-futuresplash\t\t\ \tspl\napplication/x-gtar\t\t\t\tgtar\napplication/x-hdf\t\t\t\thdf\napplication/x-java-archive\t\ \t\tjar\napplication/x-java-jnlp-file\t\t\tjnlp\napplication/x-java-pack200\t\t\ \tpack\napplication/x-killustrator\t\t\tkil\napplication/x-latex\t\t\t\tlatex\n\ application/x-netcdf\t\t\t\tnc cdf\napplication/x-perl\t\t\t\tpl\napplication/x-rpm\t\ \t\t\trpm\napplication/x-sh\t\t\t\tsh\napplication/x-shar\t\t\t\tshar\napplication/x-stuffit\t\ \t\t\tsit\napplication/x-sv4cpio\t\t\t\tsv4cpio\napplication/x-sv4crc\t\t\t\t\ sv4crc\napplication/x-tar\t\t\t\ttar\napplication/x-tcl\t\t\t\ttcl\napplication/x-tex\t\ \t\t\ttex\napplication/x-texinfo\t\t\t\ttexinfo texi\napplication/x-troff-man\t\ \t\t\tman 1 2 3 4 5 6 7 8\napplication/x-troff-me\t\t\t\tme\napplication/x-troff-ms\t\ \t\t\tms\napplication/x-ustar\t\t\t\tustar\napplication/x-wais-source\t\t\tsrc\n\ application/x-xpinstall\t\t\t\txpi\napplication/x-xspf+xml\t\t\t\txspf\napplication/x-xz\t\ \t\t\txz\naudio/midi\t\t\t\t\tmid midi kar\naudio/x-aiff\t\t\t\t\taif aiff aifc\n\ audio/x-annodex\t\t\t\t\taxa\naudio/x-flac\t\t\t\t\tflac\naudio/x-matroska\t\t\ \t\tmka\naudio/x-mod\t\t\t\t\tmod ult uni m15 mtm 669 med\naudio/x-mpegurl\t\t\ \t\t\tm3u\naudio/x-ms-wax\t\t\t\t\twax\naudio/x-ms-wma\t\t\t\t\twma\naudio/x-pn-realaudio\t\ \t\t\tram rm\naudio/x-realaudio\t\t\t\tra\naudio/x-s3m\t\t\t\t\ts3m\naudio/x-stm\t\ \t\t\t\tstm\naudio/x-wav\t\t\t\t\twav\nchemical/x-xyz\t\t\t\t\txyz\nimage/webp\t\ \t\t\t\twebp\nimage/x-cmu-raster\t\t\t\tras\nimage/x-portable-anymap\t\t\t\tpnm\n\ image/x-portable-bitmap\t\t\t\tpbm\nimage/x-portable-graymap\t\t\tpgm\nimage/x-portable-pixmap\t\ \t\t\tppm\nimage/x-rgb\t\t\t\t\trgb\nimage/x-targa\t\t\t\t\ttga\nimage/x-xbitmap\t\ \t\t\t\txbm\nimage/x-xpixmap\t\t\t\t\txpm\nimage/x-xwindowdump\t\t\t\txwd\ntext/html-sandboxed\t\ \t\t\tsandboxed\ntext/x-pod\t\t\t\t\tpod\ntext/x-setext\t\t\t\t\tetx\nvideo/webm\t\ \t\t\t\twebm\nvideo/x-annodex\t\t\t\t\taxv\nvideo/x-flv\t\t\t\t\tflv\nvideo/x-javafx\t\ \t\t\t\tfxm\nvideo/x-matroska\t\t\t\tmkv\nvideo/x-matroska-3d\t\t\t\tmk3d\nvideo/x-ms-asf\t\ \t\t\t\tasx\nvideo/x-ms-wm\t\t\t\t\twm\nvideo/x-ms-wmv\t\t\t\t\twmv\nvideo/x-ms-wmx\t\ \t\t\t\twmx\nvideo/x-ms-wvx\t\t\t\t\twvx\nvideo/x-msvideo\t\t\t\t\tavi\nvideo/x-sgi-movie\t\ \t\t\tmovie\nx-conference/x-cooltalk\t\t\t\tice\nx-epoc/x-sisx-app\t\t\t\tsisx\n" kind: ConfigMap metadata: creationTimestamp: '2026-03-20T09:05:48Z' labels: osp-provisionserver/name: edpm-a-provisionserver osp-provisionserver/namespace: openstack osp-provisionserver/uid: e62e2aa2-445a-48fa-a38f-fe2338ac2ade managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:data: .: {} f:httpd.conf: {} f:mime.types: {} f:metadata: f:labels: .: {} f:osp-provisionserver/name: {} f:osp-provisionserver/namespace: {} f:osp-provisionserver/uid: {} f:ownerReferences: .: {} k:{"uid":"e62e2aa2-445a-48fa-a38f-fe2338ac2ade"}: {} manager: manager operation: Update time: '2026-03-20T09:05:48Z' name: edpm-a-provisionserver-httpd-config namespace: openstack ownerReferences: - apiVersion: baremetal.openstack.org/v1beta1 blockOwnerDeletion: true controller: true kind: OpenStackProvisionServer name: edpm-a-provisionserver uid: e62e2aa2-445a-48fa-a38f-fe2338ac2ade resourceVersion: '29690' uid: 9247fa5d-5deb-47ee-b4cb-43bf13fadeb8