FishEye Config

FishEye Config

FishEye configuration

FishEye is

  • running as a separate instance from /home/fisheye/
  • configured in FISHEYE_ROOT/config.xml to run on port 8081
  • accessed via /etc/apache2/sites-available/scm.ops4j.org.fiheye containing something like
    <VirtualHost *:80>
        ServerName scm.ops4j.org
        ServerAdmin webmaster@localhost
        DocumentRoot /var/http/scm.ops4j.org
    
        <Location / >
            Options Indexes FollowSymLinks MultiViews
            Order allow,deny
            allow from all
        </Location>
    
        ErrorLog /var/log/apache2/scm.ops4j.org.error.log
        CustomLog /var/log/apache2/scm.ops4j.org.access.log combined
    
        ProxyPass / http://localhost:8081/
        ProxyPassReverse / http://localhost:8081/
    
    
    </VirtualHost>