extranet/config/ns359466.ovh.net
Michael RICOIS d7a171a280 Maj Config
2010-06-17 14:10:20 +00:00
..
2010-06-17 14:10:20 +00:00

Serveur hébergé chez ovh

Configuration vhost
===================

<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	ServerName extranet.scores-decisions.com
	ServerAlias extranet3.scores-decisions.com
	AddDefaultCharset UTF-8
	DocumentRoot /home/www/extranet/www	
	
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	
	<Directory /home/www/extranet/www/>
		Options Indexes FollowSymLinks
		AllowOverride none
		Order allow,deny
		Allow from all
		
		<IfModule mod_php5.c>
        php_value auto_prepend_file "/home/www/extranet/config/prepend.php"
        php_value auto_append_file "/home/www/extranet/config/append.php"
        </IfModule>

		<IfModule mod_rewrite.c>
	    RewriteEngine On
	    RewriteBase /
	    RewriteCond %{REQUEST_FILENAME} !-f
	    RewriteCond %{REQUEST_FILENAME} !-d
	    RewriteCond %{REQUEST_URI} !=/favicon.ico
	    RewriteRule ^imgcache/(.*)$ ./image.php?q=$1 [L,NC]
	    RewriteRule ^pdf/(.*)$ ./datafile.php?type=pdf&q=$1 [L,NC]
	    RewriteRule ^logos/(.*)$ ./datafile.php?type=logos&q=$1 [L,NC]
		</IfModule>
	</Directory>
	
	<Directory /home/www/extranet/www/min/>
		<IfModule mod_rewrite.c>
        RewriteEngine on
        RewriteRule ^([a-z]=.*)  index.php?$1  [L,NE]
        </IfModule>
    </Directory>
	
	<Directory /home/www/data/>
		AllowOverride none
		Order allow,deny
		Allow from all
	</Directory>
	
	<Location />
		# Netscape 4.x has some problems...
		BrowserMatch ^Mozilla/4 gzip-only-text/html

		# Netscape 4.06-4.08 have some more problems
		BrowserMatch ^Mozilla/4\.0[678] no-gzip

		# MSIE masquerades as Netscape, but it is fine
		# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

		# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
		# the above regex won't work. You can use the following
		# workaround to get the desired effect:
		BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

		#AddOutputFilterByType DEFLATE text/css
		AddOutputFilterByType DEFLATE text/javascript
		AddOutputFilterByType DEFLATE application/x-javascript
		
		Header append Vary User-Agent env=!dont-vary
	</Location>
	
	
	
	# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
    LogLevel error
	ErrorLog /var/log/apache2/extranet-error.log
	CustomLog /var/log/apache2/extranet-access.log combined
	ServerSignature Off
</VirtualHost>