Skip to content

Instantly share code, notes, and snippets.

@prasadrahul
Created May 19, 2015 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prasadrahul/33238f317b71e1e28738 to your computer and use it in GitHub Desktop.
Save prasadrahul/33238f317b71e1e28738 to your computer and use it in GitHub Desktop.
Apache Configuration for Bugzilla
<VirtualHost *:80>
ServerAdmin prasad_rahul@yahoo.co.in
Alias /bugzilla/ /var/www/bugzilla/
<Directory "/var/www/bugzilla">
AddHandler cgi-script .cgi .pl
DirectoryIndex index.cgi
Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch +FollowSymLinks
AllowOverride none
Require all granted
</Directory>
<Directory "/var/www/bugzilla/data">
Options FollowSymLinks
AllowOverride none
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error_bugzilla.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
CustomLog ${APACHE_LOG_DIR}/access_bugzilla.log combined
</VirtualHost>
# sudo vi /etc/apache2/sites-available/000-default.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment