Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
<Directory "/var/www/html/mythweb">
2
	Options FollowSymLinks
3
	AllowOverride All
4
	Order allow,deny
5
	Allow from all
6
 
7
	SetEnv db_server "localhost"
8
	SetEnv db_name "mythconverg"
9
	SetEnv db_login "mythtv"
10
	SetEnv db_password "mythtv"
11
 
12
	RewriteEngine on
13
	RewriteRule ^(css|data|images|js|themes|skins|README|INSTALL|[a-z_]+\.(php|pl))(/|$) - [L]
14
	RewriteRule ^(pl(/.*)?)$ mythweb.pl/$1 [QSA,L]
15
	RewriteRule ^(.+)$ mythweb.php/$1 [QSA,L]
16
	RewriteRule ^(.*)$ mythweb.php [QSA,L]
17
 
18
	AddType video/nuppelvideo .nuv
19
	AddType image/x-icon .ico
20
 
21
	<Files *.pl>
22
		SetHandler cgi-script
23
		Options +ExecCGI
24
	</Files>
25
 
26
</Directory>