24 lines
495 B
ApacheConf
24 lines
495 B
ApacheConf
<IfModule mod_mime.c>
|
|
AddType text/x-yaml .yml
|
|
</IfModule>
|
|
|
|
<VirtualHost *:80>
|
|
DocumentRoot /usr/share/hedera-web/
|
|
</VirtualHost>
|
|
|
|
<Directory /usr/share/hedera-web/>
|
|
Options -Indexes -FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
|
|
<FilesMatch "\.(css|js|json|yml|php|xml|html|svg)$">
|
|
SetOutputFilter DEFLATE
|
|
</FilesMatch>
|
|
|
|
<FilesMatch "\.(ttf|otf|eot|woff)$">
|
|
<IfModule mod_headers.c>
|
|
Header set Access-Control-Allow-Origin "*"
|
|
</IfModule>
|
|
</FilesMatch>
|
|
</Directory>
|