Skip to content

Commit

Permalink
Update domain.conf
Browse files Browse the repository at this point in the history
Add aAdaad

Signed-off-by: Max Barrett <[email protected]>
  • Loading branch information
MaximillianGroup authored Nov 7, 2024
1 parent 8476bbe commit 4b42829
Showing 1 changed file with 86 additions and 1 deletion.
87 changes: 86 additions & 1 deletion domain.conf
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ LimitRequestBody 10240000
# Add separate <Directory> blocks for each application with its own AllowOverride settings)
<Directory /var/www/html>

# Allows .htaccess overrides for these types ONLY – ADJUST IF NEEDED
# Allows .htaccess overrides for these types ONLY – ADJUST IF NEEDED
AllowOverride FileInfo AuthConfig Limit

# Allows access to all. Change if you need more specific access controls.
Expand Down Expand Up @@ -161,6 +161,91 @@ LimitRequestBody 10240000
Require all denied
</FilesMatch>

<IfModule mod_mime.c>
# Data interchange
AddType application/atom+xml atom
AddType application/json json map topojson
AddType application/ld+json jsonld
AddType application/rss+xml rss
AddType application/geo+json geojson
AddType application/rdf+xml rdf
AddType application/xml xml
# JavaScript
AddType text/javascript js mjs
# Manifest files
AddType application/manifest+json webmanifest
AddType application/x-web-app-manifest+json webapp
AddType text/cache-manifest appcache
# Media files
AddType audio/mp4 f4a f4b m4a
AddType audio/flac flac
AddType audio/acc acc
AddType audio/webm weba
AddType video/webm webm
AddType application/vnd.apple.mpegurl m3u8
AddType audio/mpegurl m3u8
AddType application/x-mpegURL m3u8
AddType video/MP2T ts
AddType audio/ogg oga ogg opus
AddType image/bmp bmp
AddType image/svg+xml svg svgz
AddType image/webp webp
AddType video/mp4 f4v f4p m4v mp4
AddType video/ogg ogv
AddType video/webm webm
AddType image/x-icon cur ico
# HEIF Images
AddType image/heic heic
AddType image/heif heif
# HEIF Image Sequence
AddType image/heics heics
AddType image/heifs heifs
# AVIF Images
AddType image/avif avif
# AVIF Image Sequence
AddType image/avis avis
# WebAssembly
AddType application/wasm wasm
# Web fonts
AddType font/woff woff
AddType font/woff2 woff2
AddType application/vnd.ms-fontobject eot
AddType font/ttf ttf
AddType font/collection ttc
AddType font/otf otf
# Other
AddType application/octet-stream safariextz
AddType application/x-bb-appworld bbaw
AddType application/x-chrome-extension crx
AddType application/x-opera-extension oex
AddType application/x-xpinstall xpi
AddType text/calendar ics
AddType text/markdown markdown md
AddType text/vcard vcard vcf
AddType text/vnd.rim.location.xloc xloc
AddType text/vtt vtt
AddType text/x-component htc
# Default Charset
AddDefaultCharset utf-8
AddCharset utf-8 .appcache \
.bbaw \
.css \
.htc \
.ics \
.js \
.json \
.manifest \
.map \
.markdown \
.md \
.mjs \
.topojson \
.vtt \
.vcard \
.vcf \
.webmanifest \
.xloc
</IfModule>

</Directory>

Expand Down

0 comments on commit 4b42829

Please sign in to comment.