2018-03-25 12:35:05 +00:00
|
|
|
.. _example_setup_joomla:
|
|
|
|
|
|
|
|
************
|
|
|
|
Setup Joomla
|
|
|
|
************
|
|
|
|
|
|
|
|
This example will install Joomla from within the PHP container.
|
|
|
|
|
|
|
|
.. seealso:: `Official Joomla Documentation <https://docs.joomla.org/J3.x:Installing_Joomla>`_
|
|
|
|
|
|
|
|
|
|
|
|
**Table of Contents**
|
|
|
|
|
|
|
|
.. contents:: :local:
|
|
|
|
|
|
|
|
|
|
|
|
Overview
|
|
|
|
========
|
|
|
|
|
|
|
|
The following configuration will be used:
|
|
|
|
|
|
|
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
|
|
|
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Project URL |
|
|
|
|
+==============+==========================+=============+============+=======================+
|
|
|
|
| my-joomla | /shared/httpd/my-joomla | n.a. | loc | http://my-joomla.loc |
|
|
|
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
|
|
|
|
|
|
|
|
|
|
|
Walk through
|
|
|
|
============
|
|
|
|
|
|
|
|
It will be ready in six simple steps:
|
|
|
|
|
|
|
|
1. Enter the PHP container
|
|
|
|
2. Create a new VirtualHost directory
|
|
|
|
3. Download and extract Joomla
|
|
|
|
4. Symlink webroot directory
|
|
|
|
5. Setup DNS record
|
|
|
|
6. Visit http://my-joomla.loc in your browser
|
|
|
|
|
|
|
|
|
|
|
|
.. seealso:: :ref:`available_tools`
|
|
|
|
|
|
|
|
|
|
|
|
1. Enter the PHP container
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-06-03 18:45:01 +00:00
|
|
|
host> ./shell.sh
|
2018-03-25 12:35:05 +00:00
|
|
|
|
2018-07-03 13:47:58 +00:00
|
|
|
.. seealso:: :ref:`work_inside_the_php_container`
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
2. Create new vhost directory
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-06-03 18:45:01 +00:00
|
|
|
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-joomla
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
3. Download and extract Joomla
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-06-03 18:45:01 +00:00
|
|
|
devilbox@php-7.0.20 in /shared/httpd $ cd my-joomla
|
|
|
|
devilbox@php-7.0.20 in /shared/httpd/my-joomla $ wget -O joomla.tar.gz https://downloads.joomla.org/cms/joomla3/3-8-0/joomla_3-8-0-stable-full_package-tar-gz?format=gz
|
|
|
|
devilbox@php-7.0.20 in /shared/httpd $ mkdir joomla
|
|
|
|
devilbox@php-7.0.20 in /shared/httpd $ tar xvfz joomla.tar.gz -C joomla/
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
4. Symlink webroot
|
|
|
|
------------------
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-06-03 18:45:01 +00:00
|
|
|
devilbox@php-7.0.20 in /shared/httpd/my-joomla $ ln -s joomla/ htdocs
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
5. DNS record
|
|
|
|
-------------
|
|
|
|
|
2018-07-03 13:47:58 +00:00
|
|
|
If you do not have :ref:`setup_auto_dns` configured, you will need to add the
|
2018-03-25 12:35:05 +00:00
|
|
|
following line to your host operating systems ``/etc/hosts`` file
|
|
|
|
(or ``C:\Windows\System32\drivers\etc`` on Windows):
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
:caption: /etc/hosts
|
|
|
|
|
2018-06-03 18:45:01 +00:00
|
|
|
127.0.0.1 my-joomla.loc
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
.. seealso::
|
2018-07-03 13:47:58 +00:00
|
|
|
|
|
|
|
* :ref:`howto_add_project_dns_entry_on_mac`
|
|
|
|
* :ref:`howto_add_project_dns_entry_on_win`
|
|
|
|
* :ref:`setup_auto_dns`
|
2018-03-25 12:35:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
6. Open your browser
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Open your browser at http://my-joomla.loc
|