Clean out sphinx errors

This commit is contained in:
cytopia 2018-06-03 19:16:22 +02:00
parent b7b215b6f1
commit 65497cb9d8
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2
14 changed files with 219 additions and 319 deletions

1
.gitignore vendored
View File

@ -80,6 +80,7 @@ docker-compose.override.yml
/docs/_build/ /docs/_build/
/docs/make.bat /docs/make.bat
/docs/Makefile /docs/Makefile
*.rst.todo
# Keep folders # Keep folders
!.keepme !.keepme

View File

@ -8,7 +8,13 @@
.wy-side-nav-search { .wy-side-nav-search {
background-color: #343131; background-color: #343131;
} }
.codeblock,
pre.literal-block,
.rst-content .literal-block,
.rst-content pre.literal-block,
div[class^='highlight'] {
overflow: hidden;
}
/* /*
div.rtd-pro.rtd-pro-footer { div.rtd-pro.rtd-pro-footer {
display: none; display: none;

View File

@ -1,3 +0,0 @@
****
BIND
****

View File

@ -1,3 +0,0 @@
*****************
Devilbox Intranet
*****************

View File

@ -1,3 +0,0 @@
*********
Memcached
*********

View File

@ -1,3 +0,0 @@
*******
MongoDB
*******

View File

@ -1,3 +0,0 @@
*****
MySQL
*****

View File

@ -1,5 +0,0 @@
***
PHP
***
Environment variables

View File

@ -1,3 +0,0 @@
*****
Redis
*****

View File

@ -1,57 +0,0 @@
.. _configuration_webserver:
**********
Web server
**********
This page lists a general overview about the bundled web server - its features,
where it comes from, how it is built and what configuration is possible.
**Table of Contents**
.. contents:: :local:
Features
========
Auto-virtual hosts
------------------
File permission problem
------------------------
Custom global configuration
---------------------------
Custom vhost configuration
--------------------------
Information
===========
Dockerfile
----------
Github
------
Dockerhub
---------
Build process
-------------
Configuration
=============
.env file
---------
apache.conf / nginx.conf
------------------------
vhost-gen
---------

View File

@ -50,12 +50,6 @@ host is ready to be served with your custom domain.
:caption: Maintenance :caption: Maintenance
:maxdepth: 2 :maxdepth: 2
maintenance/install
maintenance/update
maintenance/uninstall
maintenance/start-the-devilbox
maintenance/add-service-to-running-devilbox
maintenance/remove-service-from-running-devilbox
maintenance/backup-and-restore-mysql maintenance/backup-and-restore-mysql
maintenance/backup-and-restore-pgsql maintenance/backup-and-restore-pgsql
maintenance/backup-and-restore-mongo maintenance/backup-and-restore-mongo
@ -69,16 +63,11 @@ host is ready to be served with your custom domain.
tutorials/add-your-own-docker-image tutorials/add-your-own-docker-image
tutorials/overwrite-existing-docker-image tutorials/overwrite-existing-docker-image
tutorials/adding-subdomains tutorials/adding-subdomains
tutorials/configure-database-in-your-project
tutorials/change-document-root
tutorials/change-container-versions tutorials/change-container-versions
tutorials/work-inside-the-container tutorials/work-inside-the-container
tutorials/enable-xdebug tutorials/enable-xdebug
tutorials/customize-vhost
tutorials/custom-apache-modules tutorials/custom-apache-modules
tutorials/custom-environment-variables tutorials/custom-environment-variables
tutorials/password-protect-intranet
tutorials/disable-intranet
tutorials/static-code-analysis tutorials/static-code-analysis
@ -148,9 +137,6 @@ host is ready to be served with your custom domain.
:caption: Advanced :caption: Advanced
:maxdepth: 2 :maxdepth: 2
advanced/technical
advanced/hacking
.. toctree:: .. toctree::
:caption: Support :caption: Support
@ -158,6 +144,5 @@ host is ready to be served with your custom domain.
support/faq support/faq
support/troubleshooting support/troubleshooting
support/contributing
support/blogs-videos-and-use-cases support/blogs-videos-and-use-cases
support/artwork support/artwork

View File

@ -23,7 +23,7 @@ Backup
There are many different options to backup your MySQL database including some for the command line There are many different options to backup your MySQL database including some for the command line
and some for using the Web interface. The recommended and fastest method is to use and some for using the Web interface. The recommended and fastest method is to use
``mysqldump-secure``, as it will also add info files (*.info) to each database recording checksums, ``mysqldump-secure``, as it will also add info files (\*.info) to each database recording checksums,
dump date, dump options as well as the server version it came from. dump date, dump options as well as the server version it came from.
@ -104,7 +104,6 @@ occured during backups. Let's have a look at one of them:
host> cat ./backups/mysql/2017-06-17_13-31__mysql.sql.gz.info host> cat ./backups/mysql/2017-06-17_13-31__mysql.sql.gz.info
.. code-block:: ini .. code-block:: ini
:name: 2017-06-17_13-31__mysql.sql.gz.info
:caption: 2017-06-17_13-31__mysql.sql.gz.info :caption: 2017-06-17_13-31__mysql.sql.gz.info
; mysqldump-secure backup record ; mysqldump-secure backup record

View File

@ -34,7 +34,6 @@ Additionally to the specific configurations for each operating system and Docker
probably also want to add the following to your ini file: probably also want to add the following to your ini file:
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
xdebug.default_enable=1 xdebug.default_enable=1
@ -103,7 +102,6 @@ Linux
----- -----
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -116,7 +114,6 @@ MacOS (Docker for Mac)
Docker 18.03.0-ce+ and Docker compose 1.20.1+ Docker 18.03.0-ce+ and Docker compose 1.20.1+
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -126,7 +123,6 @@ Docker 18.03.0-ce+ and Docker compose 1.20.1+
Docker 17.12.0-ce+ and Docker compose 1.18.0+ Docker 17.12.0-ce+ and Docker compose 1.18.0+
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -136,7 +132,6 @@ Docker 17.12.0-ce+ and Docker compose 1.18.0+
Docker 17.06.0-ce+ and Docker compose 1.14.0+ Docker 17.06.0-ce+ and Docker compose 1.14.0+
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -160,7 +155,6 @@ Windows (Docker for Windows)
Docker 18.03.0-ce+ and Docker compose 1.20.1+ Docker 18.03.0-ce+ and Docker compose 1.20.1+
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -170,7 +164,6 @@ Docker 18.03.0-ce+ and Docker compose 1.20.1+
Docker 17.06.0-ce+ and Docker compose 1.14.0+ Docker 17.06.0-ce+ and Docker compose 1.14.0+
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
:emphasize-lines: 1 :emphasize-lines: 1
@ -230,7 +223,6 @@ Atom
For Atom, you need to provide a different ``xdebug.idekey`` in your php.ini file ``xdebug.ini``: For Atom, you need to provide a different ``xdebug.idekey`` in your php.ini file ``xdebug.ini``:
.. code-block:: ini .. code-block:: ini
:name: xdebug.ini
:caption: xdebug.ini :caption: xdebug.ini
xdebug.idekey=xdebug.atom xdebug.idekey=xdebug.atom
@ -238,8 +230,7 @@ For Atom, you need to provide a different ``xdebug.idekey`` in your php.ini file
Linux Linux
^^^^^^ ^^^^^^
.. code-block:: json .. code-block:: js
:name: launch.json
:caption: launch.json :caption: launch.json
:emphasize-lines: 6 :emphasize-lines: 6
@ -315,7 +306,6 @@ Sublime Text 3
Linux Linux
^^^^^^ ^^^^^^
.. code-block:: json .. code-block:: json
:name: Xdebug-sublime-settings
:caption: Xdebug-sublime-settings :caption: Xdebug-sublime-settings
:emphasize-lines: 3,6 :emphasize-lines: 3,6
@ -356,7 +346,6 @@ Visual Studio Code
Linux Linux
^^^^^^ ^^^^^^
.. code-block:: json .. code-block:: json
:name: launch.json
:caption: launch.json :caption: launch.json
:emphasize-lines: 9,10 :emphasize-lines: 9,10