diff --git a/docs/_includes/links/examples.rst b/docs/_includes/links/examples.rst
index d927fdc7..df4ecffb 100644
--- a/docs/_includes/links/examples.rst
+++ b/docs/_includes/links/examples.rst
@@ -10,6 +10,12 @@
Official CodeIgniter Documentation
+.. |ext_lnk_example_codeigniter4_documentation| raw:: html
+
+
+ Official CodeIgniter Documentation
+
+
.. |ext_lnk_example_contao_documentation| raw:: html
diff --git a/docs/examples/setup-codeigniter4.rst b/docs/examples/setup-codeigniter4.rst
new file mode 100644
index 00000000..14c07f47
--- /dev/null
+++ b/docs/examples/setup-codeigniter4.rst
@@ -0,0 +1,216 @@
+.. include:: /_includes/all.rst
+.. include:: /_includes/snippets/__ANNOUNCEMENTS__.rst
+
+.. _example_setup_codeigniter4:
+
+******************
+Setup CodeIgniter4
+******************
+
+After completing the below listed steps, you will have a working CodeIgniter setup ready to be
+served via http and https.
+
+.. seealso:: |ext_lnk_example_codeigniter4_documentation|
+
+
+**Table of Contents**
+
+.. contents:: :local:
+
+
+Overview
+========
+
+The following configuration will be used:
+
++--------------+--------------------------+-------------+------------+-----------------------------------------+
+| Project name | VirtualHost directory | Database | TLD_SUFFIX | Project URL |
++==============+==========================+=============+============+=========================================+
+| my-ci | /shared/httpd/my-ci | my_ci | loc | http://my-ci.loc |br| https://my-ci.loc |
++--------------+--------------------------+-------------+------------+-----------------------------------------+
+
+.. note::
+ * Inside the Devilbox PHP container, projects are always in ``/shared/httpd/``.
+ * On your host operating system, projects are by default in ``./data/www/`` inside the
+ Devilbox git directory. This path can be changed via :ref:`env_httpd_datadir`.
+
+
+Walk through
+============
+
+It will be ready in eight simple steps:
+
+1. Enter the PHP container
+2. Create a new VirtualHost directory
+3. Download CodeIgniter
+4. Symlink webroot directory
+5. Add MySQL database
+6. Configure datbase connection
+7. Setup DNS record
+8. Visit http://my-ci.loc in your browser
+
+
+1. Enter the PHP container
+--------------------------
+
+All work will be done inside the PHP container as it provides you with all required command line
+tools.
+
+Navigate to the Devilbox git directory and execute ``shell.sh`` (or ``shell.bat`` on Windows) to
+enter the running PHP container.
+
+.. code-block:: bash
+
+ host> ./shell.sh
+
+.. seealso::
+ * :ref:`enter_the_php_container`
+ * :ref:`work_inside_the_php_container`
+ * :ref:`available_tools`
+
+
+2. Create new vhost directory
+-----------------------------
+
+The vhost directory defines the name under which your project will be available. |br|
+( ``.TLD_SUFFIX`` will be the final URL ).
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd $ mkdir my-ci
+
+.. seealso:: :ref:`env_tld_suffix`
+
+
+3. Download CodeIgniter
+-----------------------
+
+Navigate into your newly created vhost directory and install CodeIgniter.
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd $ cd my-ci
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ composer create-project codeigniter4/appstarter ci4app
+
+How does the directory structure look after installation:
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ tree -L 1
+ .
+ └── ci4app
+
+ 1 directory, 0 files
+
+
+4. Symlink webroot
+------------------
+
+Symlinking the actual webroot directory to ``htdocs`` is important. The web server expects every
+project's document root to be in ``/htdocs/``. This is the path where it will serve
+the files. This is also the path where your frameworks entrypoint (usually ``index.php``) should
+be found.
+
+Some frameworks however provide its actual content in nested directories of unknown levels.
+This would be impossible to figure out by the web server, so you manually have to symlink it back
+to its expected path.
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ ln -s ci4app/public htdocs
+
+How does the directory structure look after symlinking:
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ tree -L 1
+ .
+ ├── ci4app
+ └── htdocs -> ci4app/public
+
+ 2 directories, 0 files
+
+As you can see from the above directory structure, ``htdocs`` is available in its expected
+path and points to the frameworks entrypoint.
+
+.. important::
+ When using **Docker Toolbox**, you need to **explicitly allow** the usage of **symlinks**.
+ See below for instructions:
+
+ * Docker Toolbox and :ref:`howto_docker_toolbox_and_the_devilbox_windows_symlinks`
+
+
+5. Add MySQL Database
+---------------------
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ mysql -u root -h 127.0.0.1 -p -e 'CREATE DATABASE my_ci;'
+
+
+6. Configure database connection
+--------------------------------
+
+.. code-block:: bash
+
+ devilbox@php-8.1.6 in /shared/httpd/my-ci $ vi htdocs/app/Config/Database.php
+
+.. code-block:: php
+ :caption: htdocs/app/Config/Database.php
+ :emphasize-lines: 4-7
+
+ '',
+ 'hostname' => '127.0.0.1',
+ 'username' => 'root',
+ 'password' => '',
+ 'database' => 'my_ci',
+ 'DBDriver' => 'MySQLi',
+ 'DBPrefix' => '',
+ 'pConnect' => false,
+ 'DBDebug' => (ENVIRONMENT !== 'production'),
+ 'charset' => 'utf8',
+ 'DBCollat' => 'utf8_general_ci',
+ 'swapPre' => '',
+ 'encrypt' => false,
+ 'compress' => false,
+ 'strictOn' => false,
+ 'failover' => [],
+ 'port' => 3306,
+ ];
+
+
+7. DNS record
+-------------
+
+If you **have** Auto DNS configured already, you can skip this section, because DNS entries will
+be available automatically by the bundled DNS server.
+
+If you **don't have** 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-ci.loc
+
+.. seealso::
+
+ * :ref:`howto_add_project_hosts_entry_on_mac`
+ * :ref:`howto_add_project_hosts_entry_on_win`
+ * :ref:`setup_auto_dns`
+
+
+8. Open your browser
+--------------------
+
+All set now, you can visit http://my-ci.loc or https://my-ci.loc in your browser.
+
+.. seealso:: :ref:`setup_valid_https`
+
+
+Next steps
+==========
+
+.. include:: /_includes/snippets/examples/next-steps.rst
diff --git a/docs/index.rst b/docs/index.rst
index c0a9ebc1..c640a134 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -177,6 +177,7 @@ host is ready to be served with your custom domain.
examples/setup-cakephp
examples/setup-codeigniter
+ examples/setup-codeigniter4
examples/setup-contao
examples/setup-craftcms
examples/setup-drupal