hedera-web/apache.conf

30 lines
602 B
ApacheConf
Raw Normal View History

2018-02-05 12:58:17 +00:00
<IfModule mod_mime.c>
AddType text/x-yaml .yml
</IfModule>
2021-04-26 11:42:42 +00:00
<IfModule mpm_prefork_module>
2021-04-26 11:55:17 +00:00
ServerLimit 30
MaxRequestWorkers 30
2021-04-26 11:42:42 +00:00
MaxRequestsPerChild 1000
</IfModule>
2020-01-20 21:26:15 +00:00
<VirtualHost *:80>
DocumentRoot /usr/share/hedera-web/
</VirtualHost>
2016-08-31 11:53:46 +00:00
<Directory /usr/share/hedera-web/>
2015-02-08 15:38:38 +00:00
Options -Indexes -FollowSymLinks
AllowOverride None
2017-12-11 11:46:36 +00:00
Require all granted
2018-02-05 12:58:17 +00:00
<FilesMatch "\.(css|js|json|yml|php|xml|html|svg)$">
SetOutputFilter DEFLATE
</FilesMatch>
2017-12-11 11:46:36 +00:00
<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
</Directory>