Skip to content

Commit c08458e

Browse files
committed
[TASK] Initial commit
0 parents  commit c08458e

File tree

4 files changed

+59
-0
lines changed

4 files changed

+59
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vagrant/

README.rst

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
*******************
2+
TYPO3 Neos Workshop
3+
*******************
4+
5+
This repository contain a basic Debian Wheezy preconfigured for TYPO3 Neos Workshop
6+
7+
.. code-block:: bash
8+
9+
$ vagrant up
10+
11+
Edit your host file:
12+
13+
.. code-block::
14+
15+
192.168.77.21 www.neos-workshop.box neos-workshop.box
16+
17+
Open your browser to http://neos-workshop.box/
18+
19+
You should see a PHP Info page ... let's start the workshop
20+
21+
=================================
22+
Vagrant Shared folder performance
23+
=================================
24+
25+
By default the Vagrantfile is configured to use NFS shared folder for performance. Unfortunatly NFS shared folder are not supported on Windows.
26+
27+
For Windows user you can check SMB shared folder here: https://docs.vagrantup.com/v2/synced-folders/smb.html or WinNFSD plugin here: https://github.com/GM-Alex/vagrant-winnfsd.
28+
29+
By default vagrant will fall back to the default shared folder. That's really slow, but works.
30+
31+
Bests,

Vagrantfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
VAGRANTFILE_API_VERSION = "2"
5+
6+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7+
8+
config.vm.box = "WorkShopNeos"
9+
10+
config.vm.synced_folder ".", "/vagrant", type: "nfs"
11+
12+
config.vbguest.auto_update = false
13+
14+
config.ssh.forward_agent = true
15+
16+
config.vm.network "private_network", ip: "192.168.77.21"
17+
config.vm.hostname = 'www.neos-workshop.box'
18+
19+
config.vm.provider "virtualbox" do |v|
20+
v.memory = 2048
21+
v.cpus = 2
22+
end
23+
24+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
phpinfo();

0 commit comments

Comments
 (0)