Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.17 KB

README.md

File metadata and controls

65 lines (42 loc) · 1.17 KB

#Vagrant TYPO3-6.2.11

###What is it? Package to quick deploy blank TYPO3 6.2.11 on virtual machine.

Vagrant config + Shell Provisioner + Bower components

Requirements

Usage

git clone https://github.com/dmh/Vagrant-TYPO3-6.2.11.git
cd Vagrant-TYPO3-6.2.11
bower install
vagrant up

To stop Vagrant VM: vagrant destroy

Status: vagrant status

Open SSH session: vagrant ssh

Connecting

Apache server is available at http://192.168.33.33

Web root: /var/www/public/

MySQL

  • Username: root
  • Password: 1234
  • DB name: typo3

TYPO3

  • TYPO3 login: admin
  • TYPO3 password: admin1234
  • TYPO3 install tools password: admin1234

Shell Provisioner. Installed Components.

  • Ubuntu 14.04 64-bit (Trusty)
  • Apache 2
  • PHP 5.5
  • MySQL 5.5
  • git
  • Imagemagick

##Important

Don't forget to change ip address for your virtual machine, if you have several of them based on this package. config.vm.network "private_network", ip: "your new IP"

Also you can change name of VM:

config.vm.define "VM name" do |typo3|