PunktDe Kontakt LogoKontakt
Schließen
Just type and press enter to search
Cancel

punkt.de Vagrant Box

The ideal development environment for Neos and TYPO3

Our punkt.de Vagrant Box, based on Vagrant and VirtualBox is the ideal development environment to run Neos and TYPO3 on your local computer. As operating system we use FreeBSD - a free Unix operating system, which is especially suitable for server environments.

Installation

Do you already have VirtualBox and Vagrant installed in your system, all you have to do to install the Neos Box is to run the following command:

curl -O https://punkt.de/Download/Vagrantfile && vagrant up

Software versions

Operating system
FreeBSD 10.2
PHP7.0.4
MariaDB10.0.23
Nginx1.8.1
Elasticsearch1.7.4
Redis3.0.7
Varnish4.1.2

You find detailed installation instructions in the Neos Workshop Blog articles.

Credentials

MySQL

UsernamePassword
rootroot
neosneos

Configure Nginx

There is a special TYPO3 server configuration for Nginx in the punkt.de Vagrant Box that has to be included in the default configuration.

sudo nano /usr/local/etc/nginx/conf.d/default.conf

You can use Joe and Vi to modify the file as well. Exchange common-neos.conf with common-typo3.conf.

server {
  listen [::]:80;
  listen 80 default_server;
  server_name  localhost;

  root   /var/www/Web/;
  include /usr/local/etc/nginx/common-typo3.conf;
}

After that you should reload the configuration.

sudo service nginx reload

Create a TYPO3 project

You need to delete the already created folder Web in /var/www. The TYPO3 packages will be downloaded with Composer.

cd /var/www
rm -rf Web
composer create-project typo3/cms-base-distribution .

Credentials

MySQL

UsernamePassword
rootroot
typo3typo3