This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
thunderdome/config/thunderdome_vhost.conf

19 lines
793 B
Plaintext

<VirtualHost *:80>
ServerAdmin webmaster@consoloservices.com
ServerName thunderdome.consoloservices.com
ErrorLog /var/log/apache2/thunderdome.consoloservices.com-error_log
CustomLog /var/log/apache2/thunderdome.consoloservices.com-access_log common
DocumentRoot /consolo/trunk/thunderdome/public
RackEnv production
<Directory "/consolo/trunk/thunderdome/public">
Options FollowSymlinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</VirtualHost>