2016-11-06 16:49:48 +00:00
# Documentation
2017-05-06 09:12:54 +00:00
[Home ](https://github.com/cytopia/devilbox ) |
Overview |
[Configuration ](Configuration.md ) |
[Usage ](Usage.md ) |
[Updating ](Updating.md ) |
[Info ](Info.md ) |
[PHP Projects ](PHP_Projects.md ) |
[Emails ](Emails.md ) |
[Logs ](Logs.md ) |
[Intranet ](Intranet.md ) |
[FAQ ](FAQ.md )
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
----
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
## Documentation Overview
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
This is a brief overview to get you started as quick as possible. For in-depth documentation use the navigation above.
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
### Install, Configure and Start
2017-05-10 19:25:10 +00:00
2016-11-06 16:49:48 +00:00
```shell
2017-05-06 09:12:54 +00:00
# Get the soures
$ git clone https://github.com/cytopia/devilbox
$ cd devilbox
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
# Create and customize the config file
$ cp env-example .env
$ vim .env
2016-11-06 16:49:48 +00:00
2017-05-06 09:12:54 +00:00
# Start your container
$ docker-compose up
2016-11-06 16:49:48 +00:00
```
2017-05-06 09:12:54 +00:00
### Create projects
2016-11-06 16:49:48 +00:00
2017-05-10 19:25:10 +00:00
Inside the `.env` file you will find two important variables:
1. `HOST_PATH_HTTPD_DATADIR`
2. `TLD_SUFFIX`
The first one defines the root path for all your projects and the second one defines your desired domain suffix (default: `loc` ). Inside the `HOST_PATH_HTTPD_DATADIR` folder you will have to create the following generic directory structure: `<project-dir>/htdocs` . Files from the `htdocs` folder are then served via `http://<project-dir>.<TLD_SUFFIX>` .
**TL;DR (easy)**
- Assuming `TLD_SUFFIX` equals `loc`
- Assuming `HOST_PATH_HTTPD_DATADIR` equals `/shared/httpd/`
- Assuming desired project name equals `my-new-project`
- `mkdir -p /shared/httpd/my-new-project/htdocs`
- `echo "127.0.0.1 my-new-project.loc" | sudo tee --append /etc/hosts`
- `curl http://my-new-project.loc`
-
**TL;DR (pro)**
- `export project=my-new-project`
- `. .env`
- `mkdir -p ${HOST_PATH_HTTPD_DATADIR}/${project}/htdocs`
- `echo "127.0.0.1 ${project}.${TLD_SUFFIX}" | sudo tee --append /etc/hosts`
- `curl http://${project}.${TLD_SUFFIX}`
Here is a more complete example for the directory structure:
2017-05-06 09:12:54 +00:00
```
project1/
htdocs/
project2/
htdocs/
some-random-name/
htdocs -> ./some-dir/ # < -- symlinks are also possible
some-dir/
my-website.com/
htdocs -> /shared/httpd/site.com/ # < -- symlinks are also possible
2016-11-06 16:49:48 +00:00
```
2017-05-06 09:12:54 +00:00
You will then have to extend `/etc/hosts` with your created foldernames plus the tld suffix:
2016-11-06 16:49:48 +00:00
```
2017-05-06 09:12:54 +00:00
127.0.0.1 project1.loc
127.0.0.1 project2.loc
127.0.0.1 some-random-name.loc
127.0.0.1 my-website.com.loc
2016-11-06 16:49:48 +00:00
```
2017-05-10 19:25:10 +00:00
Contents inside the `htdocs` folder will be server via the configured domain automatically. So in order to access project2's htdoc folder go to `http://project2.loc` (assuming `TLD_SUFFIX` was `loc` )