Commit 89fbc61f authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1200010: The Quick Start doc should stop assuming Bugzilla is your single application

r=gerv
parent 28ec15f1
......@@ -5,8 +5,8 @@ Quick Start (Ubuntu Linux 14.04)
This quick start guide makes installing Bugzilla as simple as possible for
those who are able to choose their environment. It creates a system using
Ubuntu Linux 14.04 LTS, Apache and MySQL, and installs Bugzilla as the default
home page. It requires a little familiarity with Linux and the command line.
Ubuntu Linux 14.04 LTS, Apache and MySQL. It requires a little familiarity
with Linux and the command line.
Obtain Your Hardware
====================
......@@ -62,17 +62,13 @@ Download Bugzilla
Get it from our Git repository:
:command:`cd /var/www`
:command:`rm -rf html`
:command:`cd /var/www/html`
:command:`git clone --branch release-X.X-stable https://git.mozilla.org/bugzilla/bugzilla html`
:command:`git clone --branch release-X.X-stable https://git.mozilla.org/bugzilla/bugzilla bugzilla`
(where "X.X" is the 2-digit version number of the stable release of Bugzilla
that you want - e.g. 4.4)
that you want - e.g. 5.0)
:command:`cd html`
Configure MySQL
===============
......@@ -113,7 +109,7 @@ Paste in the following and save:
ServerName localhost
<Directory /var/www/html>
<Directory /var/www/html/bugzilla>
AddHandler cgi-script .cgi
Options +ExecCGI
DirectoryIndex index.cgi index.html
......@@ -135,7 +131,7 @@ generates a config file (called :file:`localconfig`) for the database
access information, and the second time (step 10)
it uses the info you put in the config file to set up the database.
:command:`cd /var/www/html`
:command:`cd /var/www/html/bugzilla`
:command:`./checksetup.pl`
......@@ -164,7 +160,7 @@ Write down the email address and password you set.
Test Server
===========
:command:`./testserver.pl http://localhost/`
:command:`./testserver.pl http://localhost/bugzilla`
All the tests should pass. You will get warnings about deprecation from
the ``Chart::Base`` Perl module; just ignore those.
......@@ -178,7 +174,7 @@ Access Via Web Browser
Access the front page:
:command:`lynx http://localhost/`
:command:`lynx http://localhost/bugzilla`
It's not really possible to use Bugzilla for real through Lynx, but you
can view the front page to validate visually that it's up and running.
......@@ -186,8 +182,8 @@ can view the front page to validate visually that it's up and running.
You might well need to configure your DNS such that the server has, and
is reachable by, a name rather than IP address. Doing so is out of scope
of this document. In the mean time, it is available on your local network
at ``http://<ip address>/``, where ``<ip address>`` is (unless you have
a complex network setup) the "inet addr" value displayed when you run
at ``http://<ip address>/bugzilla``, where ``<ip address>`` is (unless you
have a complex network setup) the "inet addr" value displayed when you run
:command:`ifconfig eth0`.
Configure Bugzilla
......@@ -201,7 +197,7 @@ Click the :guilabel:`Parameters` link on the page it gives you, and set
the following parameters in the :guilabel:`Required Settings` section:
* :param:`urlbase`:
:paramval:`http://<servername>/` or :paramval:`http://<ip address>/`
:paramval:`http://<servername>/bugzilla/` or :paramval:`http://<ip address>/bugzilla/`
Click :guilabel:`Save Changes` at the bottom of the page.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment