mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-25 07:21:04 +00:00
Merge pull request #268 from cytopia/photoncms
Documentation: how to install Photon CMS
This commit is contained in:
commit
55f8ab5e22
@ -74,7 +74,7 @@ It will be ready in six simple steps:
|
|||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
devilbox@php-7.0.20 in /shared/httpd/my-pahlcon $ ln -s phalconphp/public/ htdocs
|
devilbox@php-7.0.20 in /shared/httpd/my-phalcon $ ln -s phalconphp/public/ htdocs
|
||||||
|
|
||||||
|
|
||||||
5. DNS record
|
5. DNS record
|
||||||
|
111
docs/examples/setup-photon-cms.rst
Normal file
111
docs/examples/setup-photon-cms.rst
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
.. _example_setup_photon_cms:
|
||||||
|
|
||||||
|
****************
|
||||||
|
Setup Photon CMS
|
||||||
|
****************
|
||||||
|
|
||||||
|
This example will use ``photon`` cli to install Photon CMS from within the PHP container.
|
||||||
|
|
||||||
|
.. seealso:: `Official Photon CMS Documentation <https://photoncms.com/resources/installing>`_
|
||||||
|
|
||||||
|
|
||||||
|
**Table of Contents**
|
||||||
|
|
||||||
|
.. contents:: :local:
|
||||||
|
|
||||||
|
|
||||||
|
Overview
|
||||||
|
========
|
||||||
|
|
||||||
|
The following configuration will be used:
|
||||||
|
|
||||||
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
||||||
|
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Project URL |
|
||||||
|
+==============+==========================+=============+============+=======================+
|
||||||
|
| my-photon | /shared/httpd/my-photon | blog | loc | http://my-photon.loc |
|
||||||
|
+--------------+--------------------------+-------------+------------+-----------------------+
|
||||||
|
|
||||||
|
.. note:: The database is created automatically by ``photon`` cli.
|
||||||
|
|
||||||
|
|
||||||
|
Walk through
|
||||||
|
============
|
||||||
|
|
||||||
|
It will be ready in six simple steps:
|
||||||
|
|
||||||
|
1. Enter the PHP container
|
||||||
|
2. Create a new VirtualHost directory
|
||||||
|
3. Install Photon
|
||||||
|
4. Symlink webroot directory
|
||||||
|
5. Setup DNS record
|
||||||
|
6. Visit http://my-photon.loc in your browser
|
||||||
|
|
||||||
|
|
||||||
|
.. seealso:: :ref:`available_tools`
|
||||||
|
|
||||||
|
|
||||||
|
1. Enter the PHP container
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
host> ./shell.sh
|
||||||
|
|
||||||
|
.. seealso:: :ref:`tutorial_work_inside_the_php_container`
|
||||||
|
|
||||||
|
|
||||||
|
2. Create new vhost directory
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-photon
|
||||||
|
|
||||||
|
|
||||||
|
3. Install Photon
|
||||||
|
------------------
|
||||||
|
|
||||||
|
During the installation you will be asked for the MySQL hostname, username and password. Ensure
|
||||||
|
not to specify ``localhost``, but instead use ``127.0.0.1`` for the hostname.
|
||||||
|
Additionally, provide a pair of credentials that has permissions to create a database or create the database
|
||||||
|
itself beforehand.
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd $ cd my-photon
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd/my-photon $ photon new blog
|
||||||
|
...What is your mysql hostname? [localhost] 127.0.0.1
|
||||||
|
...What is your mysql username? [root]root
|
||||||
|
...What is your mysql password? []
|
||||||
|
|
||||||
|
|
||||||
|
4. Symlink webroot
|
||||||
|
------------------
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
devilbox@php-7.0.20 in /shared/httpd/my-photon $ ln -s blog/public/ htdocs
|
||||||
|
|
||||||
|
|
||||||
|
5. DNS record
|
||||||
|
-------------
|
||||||
|
|
||||||
|
If you do not have :ref:`global_configuration_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
|
||||||
|
:name: /etc/hosts
|
||||||
|
|
||||||
|
127.0.0.1 my-photon.loc
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
For in-depth info about adding DNS records on Linux, Windows or MacOS see:
|
||||||
|
:ref:`project_configuration_dns_records` or :ref:`global_configuration_auto_dns`.
|
||||||
|
|
||||||
|
|
||||||
|
6. Open your browser
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Open your browser at http://my-photon.loc
|
@ -91,6 +91,7 @@ host is ready to be served with your custom domain.
|
|||||||
examples/setup-joomla
|
examples/setup-joomla
|
||||||
examples/setup-laravel
|
examples/setup-laravel
|
||||||
examples/setup-phalcon
|
examples/setup-phalcon
|
||||||
|
examples/setup-photon-cms
|
||||||
examples/setup-symfony
|
examples/setup-symfony
|
||||||
examples/setup-wordpress
|
examples/setup-wordpress
|
||||||
examples/setup-yii
|
examples/setup-yii
|
||||||
|
@ -60,6 +60,8 @@ The PHP container is your workhorse and these are your tools:
|
|||||||
+----------------------+-----------------------------------------------------------------------------------+
|
+----------------------+-----------------------------------------------------------------------------------+
|
||||||
| ``phpcbf`` | `PHP Code Beautifier and Fixer <https://github.com/squizlabs/PHP_CodeSniffer>`_ |
|
| ``phpcbf`` | `PHP Code Beautifier and Fixer <https://github.com/squizlabs/PHP_CodeSniffer>`_ |
|
||||||
+----------------------+-----------------------------------------------------------------------------------+
|
+----------------------+-----------------------------------------------------------------------------------+
|
||||||
|
| ``photon`` | `Photon CMS cli <https://photoncms.com/resources/installing>`_ |
|
||||||
|
+----------------------+-----------------------------------------------------------------------------------+
|
||||||
| ``redis*`` | Various Redis client tools |
|
| ``redis*`` | Various Redis client tools |
|
||||||
+----------------------+-----------------------------------------------------------------------------------+
|
+----------------------+-----------------------------------------------------------------------------------+
|
||||||
| ``sass`` | `Sass <http://sass-lang.com>`_ |
|
| ``sass`` | `Sass <http://sass-lang.com>`_ |
|
||||||
|
Loading…
Reference in New Issue
Block a user