devilbox/docs/examples/setup-laravel.rst
2018-06-03 21:54:38 +02:00

2.3 KiB

Setup Laravel

This example will use laravel to install Laravel from within the PHP container.

Table of Contents

local

Overview

The following configuration will be used:

Project name VirtualHost directory Database TLD_SUFFIX Project URL
my-laravel /shared/httpd/my-laravel n.a. loc http://my-laravel.loc

Walk through

It will be ready in six simple steps:

  1. Enter the PHP container
  2. Create a new VirtualHost directory
  3. Install Laravel
  4. Symlink webroot directory
  5. Setup DNS record
  6. Visit http://my-laravel.loc in your browser

available_tools

1. Enter the PHP container

host> ./shell.sh

tutorial_work_inside_the_php_container

2. Create new vhost directory

devilbox@php-7.0.20 in /shared/httpd $ mkdir my-laravel

3. Install Laravel

devilbox@php-7.0.20 in /shared/httpd $ cd my-laravel
devilbox@php-7.0.20 in /shared/httpd/my-laravel $ laravel new laravel-project
devilbox@php-7.0.20 in /shared/httpd/my-laravel $ ln -s laravel-project/public/ htdocs

5. DNS record

If you do not have 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):

127.0.0.1 my-laravel.loc

For in-depth info about adding DNS records on Linux, Windows or MacOS see: project_configuration_dns_records or global_configuration_auto_dns.

6. Open your browser

Open your browser at http://my-laravel.loc