Difference between revisions of "Bugzilla on s4y vserver - SuSE 9.0"

From Blue-IT.org Wiki

 
Line 1: Line 1:
 +
[Category:Testing]
 
'''Installation''' took place on a [http://www.vserver.de vserver basic]. Apache2 is used as webserver and configured with virtual servers.
 
'''Installation''' took place on a [http://www.vserver.de vserver basic]. Apache2 is used as webserver and configured with virtual servers.
  

Revision as of 18:58, 1 June 2006

[Category:Testing] Installation took place on a vserver basic. Apache2 is used as webserver and configured with virtual servers.

  • Bugzilla 2.22
  • SuSE 9.3
  • Apache/2.0.49

Bugzilla was installed using the following Documents:

Configfile for the virtual server /etc/apache2/vhosts.d/my.domain.conf:

<VirtualHost MY.IP.XXX.XXX:80>
 ServerName my.domain.com
 ServerAlias www.my.domain.com
 DocumentRoot "/srv/www/myBugzillaInstallDirectory"
 <Directory "/srv/www/myBugzillaInstallDirectory">
   AddHandler cgi-script cgi
   Options +Indexes +ExecCGI +FollowSymLinks
   DirectoryIndex index.cgi
   AllowOverride All
   Order allow,deny
   Allow from all
</Directory>
</VirtualHost>


Directory Rights where set to:

chmod +g+x /srv/www/myBugzillaInstallDirectory
chown -R wwwrun:www /srv/www/myBugzillaInstallDirectory