~ubuntu-branches/ubuntu/intrepid/bugzilla/intrepid

« back to all changes in this revision

Viewing changes to debian/examples/vh-basic.conf

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<VirtualHost bugzilla.domain.com>
 
2
    ServerAdmin bugzilla@domain.com
 
3
    ServerName bugzilla.domain.com
 
4
 
 
5
    DocumentRoot /usr/share/bugzilla3/web
 
6
    
 
7
    SetEnv X_BUGZILLA_SITE "basic"
 
8
    SetEnv X_BUGZILLA_WEBPATH "/"
 
9
 
 
10
    # This is needed for keeping a good url in lots of links
 
11
    RewriteEngine On
 
12
    RewriteRule ^(.*/cgi-bin/bugzilla3)/?$ $1/index.cgi [R]
 
13
 
 
14
    # Rewrite the index access to the CGI path, much clean than
 
15
    # the pretty old-fashion index.html redirection
 
16
    RewriteRule ^/index.html$ /cgi-bin/index.cgi [PT]
 
17
 
 
18
</VirtualHost>