blob: a3966ea191c445d0f7afa980028e2a3b75148fa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
ScriptAlias /gbrowse/cgi-bin/gbrowse "/var/www/localhost/htdocs/gbrowse/cgi-bin/gbrowse"
ScriptAlias /gbrowse/cgi-bin/ "/var/www/localhost/htdocs/gbrowse/cgi-bin/"
<Directory "/var/www/localhost/htdocs/gbrowse/cgi-bin/">
Options ExecCGI
AllowOverride None
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
Alias /gbrowse/i "/var/www/localhost/htdocs/gbrowse/images"
Alias /gbrowse "/var/www/localhost/htdocs/gbrowse"
Alias /gbrowse2 "/var/www/localhost/htdocs/gbrowse"
<Directory "/var/www/localhost/htdocs/gbrowse">
Options FollowSymlinks
AllowOverride None
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
|