...
- Use sudo to open the file in a text editor like
pico
oremacs
: and enter your password. *Note* this only works if you have admin privileges on yoru computer.
Code Block |
---|
sudo pico httpd.conf |
...
Code Block |
---|
#DocumentRoot "/Library/WebServer/Documents"
DocumentRoot "/Users/username/quickload"
|
...
Code Block |
---|
#<Directory "/Library/WebServer/Documents">
<Directory "/Users/username/quickload">
|
...
- Restart Apache. To restart Apache on a Mac, open Apple > System Preferences ... > Sharing and select *Web Sharing." If it is already selected, that means Apache is already running. Unselect it to stop Apache and then select it again to restart Apache.
- Open a Web browser and enter url http://localhost
- You should see now see something that looks exactly like the public IGB QuickLoad site.
Note |
---|
Now, you can configure IGB to access your local copy of IGB QuickLoad using both the URL http://localhost *or* using the file chooser because IGB supports QuickLoad access via |
Check out or update a copy of IGB QuickLoad source code (src) directory.
As before, open a terminal and change into the directory where you want your checked-out copy of the genomes src code to reside. A good place for checked-out code is a directory named src
in your home directory.
...