diff options
author | Jacob Michalskie <hel@lcp.world> | 2023-01-15 03:32:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 21:32:07 -0500 |
commit | 7d7796565b116f03d13a02d4a0c294c4683b5ab2 (patch) | |
tree | 57a63739abb1fbafed28b25dab398e5ce8a163ae | |
parent | 1b6b074d03d3102ec84d7ce6afe77010517a5c96 (diff) | |
download | bugs-7d7796565b116f03d13a02d4a0c294c4683b5ab2.tar bugs-7d7796565b116f03d13a02d4a0c294c4683b5ab2.tar.gz bugs-7d7796565b116f03d13a02d4a0c294c4683b5ab2.tar.bz2 bugs-7d7796565b116f03d13a02d4a0c294c4683b5ab2.tar.xz bugs-7d7796565b116f03d13a02d4a0c294c4683b5ab2.zip |
Move Directory out of VirtualHost (5.0) (#121)
* Move Directory out of VirtualHost
* Unindent the block
* Remove VirtualHost block and refer to Apache section
* Switch over to using webapps directory
-rw-r--r-- | docs/en/rst/installing/quick-start.rst | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/docs/en/rst/installing/quick-start.rst b/docs/en/rst/installing/quick-start.rst index f0ac2fa4f..10301d588 100644 --- a/docs/en/rst/installing/quick-start.rst +++ b/docs/en/rst/installing/quick-start.rst @@ -103,17 +103,16 @@ Configure Apache Paste in the following and save: .. code-block:: apache + Alias /bugzilla /var/www/webapps/bugzilla + <Directory /var/www/webapps/bugzilla> + AddHandler cgi-script .cgi + Options +ExecCGI + DirectoryIndex index.cgi index.html + AllowOverride All + </Directory> - <VirtualHost \*:80> - ServerName localhost - - <Directory /var/www/html/bugzilla> - AddHandler cgi-script .cgi - Options +ExecCGI - DirectoryIndex index.cgi index.html - AllowOverride All - </Directory> - </VirtualHost> +This configuration sets up Bugzilla to be served on your server under ``/bugzilla`` path. +For more in depth setup instructions, refer to :ref:`Apache section of this documentation <apache>`. :command:`a2ensite bugzilla` @@ -126,7 +125,9 @@ Download Bugzilla Get it from our Git repository: -:command:`cd /var/www/html` +:command:`mkdir -p /var/www/webapps` + +:command:`cd /var/www/webapps` :command:`git clone --branch release-X.X-stable https://github.com/bugzilla/bugzilla bugzilla` @@ -142,7 +143,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/bugzilla` +:command:`cd /var/www/webapps/bugzilla` :command:`./checksetup.pl` |