-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.GBrowse-2.00
56 lines (47 loc) · 1.93 KB
/
README.GBrowse-2.00
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
I suggest you test GBrowse from its development directory rather than
doing "make install". The reason for this is that the installation
scripts haven't been updated in a while, and probably won't work!
Assuming that you have unpacked GBrowse into
/home/fred/src/Generic-Genome-Browser, here is a template Apache
configuration devoted to GBrowse testing:
Listen 8080
NameVirtualHost *:8080
<VirtualHost *:8080>
ServerAdmin webmaster@localhost
DocumentRoot /home/fred/src/Generic-Genome-Browser/htdocs/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/fred/src/Generic-Genome-Browser/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /home/fred/src/Generic-Genome-Browser/cgi-bin/
<Directory "/home/fred/src/Generic-Genome-Browser/cgi-bin/">
SetEnv PERL5LIB /home/fred/src/Generic-Genome-Browser/libnew:/home/fred/src/bioperl-live
SetEnv GBROWSE_MASTER GBrowse.conf
SetEnv GBROWSE_CONF /home/fred/src/Generic-Genome-Browser/conf
SetEnv GBROWSE_DOCS /home/fred/src/Generic-Genome-Browser/htdocs
SetEnv GBROWSE_ROOT /
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
This will create a virtual host listening on port 8080.
Please make note of all occurrences of
/home/fred/src/Generic-Genome-Browser. This will need to be replaced
with the path in which you unpacked GBrowse. Also be sure to replace
/var/log/apache2/ with the location of your error logs and
/home/fred/src/bioperl-live with the location of bioperl-live, if you
have not installed it.
Lincoln Stein
August 2008