mirror of
https://github.com/cytopia/devilbox.git
synced 2025-02-21 09:51:49 +00:00
Add example to setup Typo3
This commit is contained in:
parent
af80d6a790
commit
1228f5d97a
141
docs/examples/setup-typo3.rst
Normal file
141
docs/examples/setup-typo3.rst
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
.. _example_setup_typo3:
|
||||||
|
|
||||||
|
***********
|
||||||
|
Setup Typo3
|
||||||
|
***********
|
||||||
|
|
||||||
|
This example will use ``composer`` to install Typo3 from within the PHP container.
|
||||||
|
|
||||||
|
.. seealso:: `Official Typo3 Documentation <https://docs.typo3.org/typo3cms/InstallationGuide/Index.html>`_
|
||||||
|
|
||||||
|
|
||||||
|
**Table of Contents**
|
||||||
|
|
||||||
|
.. contents:: :local:
|
||||||
|
|
||||||
|
|
||||||
|
Overview
|
||||||
|
========
|
||||||
|
|
||||||
|
The following configuration will be used:
|
||||||
|
|
||||||
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
||||||
|
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Project URL |
|
||||||
|
+==============+==========================+=============+============+=======================+
|
||||||
|
| my-typo | /shared/httpd/my-typo | my_typo | loc | http://my-typo.loc |
|
||||||
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
||||||
|
|
||||||
|
|
||||||
|
Walk through
|
||||||
|
============
|
||||||
|
|
||||||
|
It will be ready in eight simple steps:
|
||||||
|
|
||||||
|
1. Enter the PHP container
|
||||||
|
2. Create a new VirtualHost directory
|
||||||
|
3. Install Typo3 via ``composer``
|
||||||
|
4. Symlink webroot directory
|
||||||
|
5. Setup DNS record
|
||||||
|
6. Create ``FIRST_INSTALL`` file
|
||||||
|
7. Open your browser
|
||||||
|
8. Step through guided web installation
|
||||||
|
|
||||||
|
|
||||||
|
.. seealso:: :ref:`available_tools`
|
||||||
|
|
||||||
|
|
||||||
|
1. Enter the PHP container
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
host> ./shell.sh
|
||||||
|
|
||||||
|
.. seealso:: :ref:`work_inside_the_php_container`
|
||||||
|
|
||||||
|
|
||||||
|
2. Create new vhost directory
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-typo
|
||||||
|
|
||||||
|
|
||||||
|
3. Install Typo3
|
||||||
|
----------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd $ cd my-typo
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd/my-typo $ composer create-project typo3/cms-base-distribution typo3
|
||||||
|
|
||||||
|
|
||||||
|
4. Symlink webroot
|
||||||
|
------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd/my-typo $ ln -s typo3/public htdocs
|
||||||
|
|
||||||
|
|
||||||
|
5. DNS record
|
||||||
|
-------------
|
||||||
|
|
||||||
|
If you do not have :ref:`setup_auto_dns` configured, you will need to add the
|
||||||
|
following line to your host operating systems ``/etc/hosts`` file
|
||||||
|
(or ``C:\Windows\System32\drivers\etc`` on Windows):
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
:caption: /etc/hosts
|
||||||
|
|
||||||
|
127.0.0.1 my-typo.loc
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
|
||||||
|
* :ref:`howto_add_project_dns_entry_on_mac`
|
||||||
|
* :ref:`howto_add_project_dns_entry_on_win`
|
||||||
|
* :ref:`setup_auto_dns`
|
||||||
|
|
||||||
|
|
||||||
|
6. Create ``FIRST_INSTALL`` file
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
To continue installing via the guided web install, you need to create a file called
|
||||||
|
``FIRST_INSTALL`` in the document root.
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd/my-typo $ touch htdocs/FIRST_INSTALL
|
||||||
|
|
||||||
|
|
||||||
|
7. Open your browser
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Open your browser at http://my-typo.loc.
|
||||||
|
|
||||||
|
|
||||||
|
8. Step through guided web installation
|
||||||
|
---------------------------------------
|
||||||
|
|
||||||
|
1. Select database
|
||||||
|
|
||||||
|
* Connection: Manually configured MySWQL TCP/IP connection
|
||||||
|
* Username: root
|
||||||
|
* Password
|
||||||
|
* Host: 127.0.0.1
|
||||||
|
* Port: 3306
|
||||||
|
|
||||||
|
2. Select database
|
||||||
|
|
||||||
|
* Create a new database: ``typo3``
|
||||||
|
|
||||||
|
3. Create Administrative User / Specify Site Name
|
||||||
|
|
||||||
|
* Username: admin
|
||||||
|
* Password: choose a secure password
|
||||||
|
* Site name: My Typo
|
||||||
|
|
||||||
|
4. Installation complete
|
||||||
|
|
||||||
|
* Create empty starting page
|
@ -200,6 +200,7 @@ their articles:
|
|||||||
* :ref:`example_setup_phalcon`
|
* :ref:`example_setup_phalcon`
|
||||||
* :ref:`example_setup_photon_cms`
|
* :ref:`example_setup_photon_cms`
|
||||||
* :ref:`example_setup_symfony`
|
* :ref:`example_setup_symfony`
|
||||||
|
* :ref:`example_setup_typo3`
|
||||||
* :ref:`example_setup_wordpress`
|
* :ref:`example_setup_wordpress`
|
||||||
* :ref:`example_setup_yii`
|
* :ref:`example_setup_yii`
|
||||||
* :ref:`example_setup_zend`
|
* :ref:`example_setup_zend`
|
||||||
|
@ -120,6 +120,7 @@ host is ready to be served with your custom domain.
|
|||||||
examples/setup-phalcon
|
examples/setup-phalcon
|
||||||
examples/setup-photon-cms
|
examples/setup-photon-cms
|
||||||
examples/setup-symfony
|
examples/setup-symfony
|
||||||
|
examples/setup-typo3
|
||||||
examples/setup-wordpress
|
examples/setup-wordpress
|
||||||
examples/setup-yii
|
examples/setup-yii
|
||||||
examples/setup-zend
|
examples/setup-zend
|
||||||
|
@ -195,6 +195,12 @@ Does it work with Symfony?
|
|||||||
Yes, see :ref:`example_setup_symfony`
|
Yes, see :ref:`example_setup_symfony`
|
||||||
|
|
||||||
|
|
||||||
|
Does it work with Typo3?
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
Yes, see :ref:`example_setup_typo3`
|
||||||
|
|
||||||
|
|
||||||
Does it work with Wordpress?
|
Does it work with Wordpress?
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user