devilbox/docs/getting-started/devilbox-intranet.rst

162 lines
4.3 KiB
ReStructuredText
Raw Normal View History

2018-07-10 18:59:52 +00:00
.. include:: /_includes/all.rst
.. include:: /_includes/snippets/__ANNOUNCEMENTS__.rst
2018-07-10 18:59:52 +00:00
.. _devilbox_intranet:
2018-07-03 13:47:58 +00:00
*****************
Devilbox intranet
*****************
2018-04-02 13:15:18 +00:00
2018-07-03 13:47:58 +00:00
The Devilbox intranet is your command & control center showing all kinds of information and
settings currently in effect. It also offers third-party projects to do all sorts of database
2018-04-02 13:15:18 +00:00
manipulation.
**Table of Contents**
.. contents:: :local:
Devilbox tools
==============
Overview
--------
The start page is there to check if everything works as expected. It shows all desired Docker
containers you wanted to start and if they succeeded, as well as their ports, mount points and
special settings applied via ``.env``.
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-index.rst
2018-04-02 13:15:18 +00:00
Virtual hosts
-------------
The virtual host page displays all available projects and let's you know if their configuration
is correct, such as DNS settings or document root.
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-vhosts.rst
2018-04-02 13:15:18 +00:00
Emails
------
The email page displays all emails that would have been sent, but were caught by the integrated
email catch-all functionality.
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-emails.rst
2018-04-02 13:15:18 +00:00
Databases
---------
There are several database pages for MySQL and NoSQL databases giving you an overview about
what is currently in place, how many databases/schemas and or recors and what size they take up.
The following example shows the database page for MySQL:
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-mysql-databases.rst
2018-04-02 13:15:18 +00:00
Info pages
----------
Info pages also exist for every Docker container which show various settings which are
currently applied.
The following example shows you the info page for PHP.
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-php-info.rst
2018-04-02 13:15:18 +00:00
The following example shows you the info page for MySQL:
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-mysql-info.rst
2018-04-02 13:15:18 +00:00
Third-party tools
=================
.. _devilbox_intranet_adminer:
2018-08-12 09:21:31 +00:00
Adminer
-------
|ext_lnk_tool_adminer| (formerly phpMinAdmin) is a full-featured database
management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to
deploy to the target server. Adminer is available for MySQL, MariaDB, PostgreSQL, SQLite, MS SQL,
Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.
.. _devilbox_intranet_phpmyadmin:
2018-08-12 09:21:31 +00:00
2018-04-02 13:15:18 +00:00
phpMyAdmin
----------
2018-07-10 18:59:52 +00:00
|ext_lnk_tool_phpmyadmin| is a free software tool written in PHP,
2018-04-02 13:15:18 +00:00
intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range
of operations on MySQL and MariaDB. Frequently used operations (managing databases, tables,
columns, relations, indexes, users, permissions, etc) can be performed via the user interface,
while you still have the ability to directly execute any SQL statement.
.. _devilbox_intranet_phppgadmin:
2018-04-02 13:15:18 +00:00
2018-12-28 21:44:50 +00:00
phpPgAdmin
----------
|ext_lnk_tool_phppgadmin| is a web-based administration tool for PostgreSQL. It is perfect for
PostgreSQL DBAs, newbies, and hosting services.
.. _devilbox_intranet_phpredmin:
2018-12-28 21:44:50 +00:00
2018-08-12 09:21:31 +00:00
phpRedMin
----------
2018-04-02 13:15:18 +00:00
2018-08-12 09:21:31 +00:00
|ext_lnk_tool_phpredmin| is a simple web interface to manage and monitor your Redis.
2018-04-02 13:15:18 +00:00
OpcacheGUI
----------
2018-07-10 18:59:52 +00:00
|ext_lnk_tool_opcachegui| is a clean and responsive interface for
2018-04-02 13:15:18 +00:00
Zend OPcache information, showing statistics, settings and cached files, and providing a real-time
update for the information (using jQuery and React).
Settings
========
Password protect the intranet
-----------------------------
If you share your projects over a LAN, but do not want anybody to view the Devilbox intranet,
you can also password protect it.
.. seealso::
2018-06-03 18:45:01 +00:00
In order to do so, have a look at the following ``.env`` variables:
2018-04-02 13:15:18 +00:00
2018-06-03 18:45:01 +00:00
* :ref:`env_devilbox_ui_protect`
* :ref:`env_devilbox_ui_password`
2018-04-02 13:15:18 +00:00
Disable the intranet
--------------------
If you want a more production-like setup, you can also fully disable the Devilbox intranet.
This is achieved internally by removing the default virtual host which serves the intranet.
When the intranet is disabled, there is no way to access it.
.. seealso::
2018-06-03 18:45:01 +00:00
In order to do so, have a look at the following ``.env`` variable:
2018-04-02 13:15:18 +00:00
2018-06-03 18:45:01 +00:00
* :ref:`env_devilbox_ui_enable`
2018-04-02 13:15:18 +00:00
Checklist
=========
1. You know what tools are provided by the Devilbox intranet
2. You know how to password protect the Devilbox intranet
3. You know how to disable the Devilbox intranet
2018-07-06 07:30:52 +00:00
.. seealso:: :ref:`troubleshooting`