]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1242263: The web server and SQL server sections are not correctly referenced...
authorFrédéric Buclin <LpSolit@gmail.com>
Wed, 17 Feb 2016 11:27:35 +0000 (12:27 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Wed, 17 Feb 2016 11:27:35 +0000 (12:27 +0100)
r=gerv

docs/en/rst/index.rst
docs/en/rst/installing/apache-windows.rst
docs/en/rst/installing/db_server.rst [new file with mode: 0644]
docs/en/rst/installing/index.rst
docs/en/rst/installing/linux.rst
docs/en/rst/installing/nginx.rst [new file with mode: 0644]
docs/en/rst/installing/web_server.rst [new file with mode: 0644]

index 4611178aaa6fdb53f2461647512d1ff817bd35e2..ff8ff3146a98def3eed08c94308a2639bbc0472d 100644 (file)
@@ -13,18 +13,3 @@ Bugzilla Documentation
    integrating/index
    api/index
    localizing/index
-   
-.. toctree::
-   :hidden:
-
-   installing/mysql
-   installing/postgresql
-   installing/oracle
-   installing/sqlite
-
-.. toctree::
-   :hidden:
-
-   installing/apache
-   installing/apache-windows
-   installing/iis
index fca8ef5eb9ecea0c7953a0ea2ed4a161a71c8908..c119e1b131f0fbf2403841c888a48d8f5160bbb1 100644 (file)
@@ -1,7 +1,7 @@
 .. _apache-windows:
 
-Apache
-######
+Apache on Windows
+#################
 
 Bugzilla supports all versions of Apache 2.2.x and 2.4.x.
 
diff --git a/docs/en/rst/installing/db_server.rst b/docs/en/rst/installing/db_server.rst
new file mode 100644 (file)
index 0000000..8a7d896
--- /dev/null
@@ -0,0 +1,18 @@
+.. _db_server:
+
+Database Server
+###############
+
+Bugzilla requires a database to store its data. We recommend either MySQL or
+PostgreSQL for production installations. Oracle 10 should work fine, but very
+little or no testing has been done with Oracle 11 and 12. SQLite is easy to
+configure but, due to its limitations, it should only be used for testing
+purposes and very small installations.
+
+.. toctree::
+   :maxdepth: 1
+
+   mysql
+   postgresql
+   oracle
+   sqlite
index 91a81bede6257c411de6e468d989992020a12760..06d0276803a0b7955cb37b09f038ef4ba7aa82ac 100644 (file)
@@ -25,6 +25,8 @@ case, you may want to read the :ref:`Quick Start instructions <quick-start>`.
    linux
    windows
    mac-os-x
+   web_server
+   db_server
    essential-post-install-config
    optional-post-install-config
    migrating
index 084caeae3c3815deeb29b71107dc97d47b7e9eb0..a8a790dd72ec6ba029b31c3901375a1fff67b1fa 100644 (file)
@@ -180,6 +180,7 @@ Any web server that is capable of running CGI scripts can be made to work.
 We have specific configuration instructions for the following:
 
 * :ref:`apache`
+* :ref:`nginx`
 
 .. _linux-config-database:
 
diff --git a/docs/en/rst/installing/nginx.rst b/docs/en/rst/installing/nginx.rst
new file mode 100644 (file)
index 0000000..9f78d13
--- /dev/null
@@ -0,0 +1,9 @@
+.. _nginx:
+
+Nginx
+#####
+
+Nginx can run Bugzilla as a PSGI application using Plack.
+
+.. todo:: Give an example of how to configure Nginx and Plack.
+          Work tracked in `bug 645282 <https://bugzilla.mozilla.org/show_bug.cgi?id=645282>`_.
diff --git a/docs/en/rst/installing/web_server.rst b/docs/en/rst/installing/web_server.rst
new file mode 100644 (file)
index 0000000..3dfeb6a
--- /dev/null
@@ -0,0 +1,14 @@
+.. _web_server:
+
+Web Server
+##########
+
+Bugzilla requires a web server. It supports the following:
+
+.. toctree::
+   :maxdepth: 1
+
+   apache
+   apache-windows
+   iis
+   nginx