|
1 | 1 | Ansible VM 2.1
|
2 | 2 | ===============
|
3 | 3 |
|
4 |
| -This virtual machine configuration is designed to have ONE application per machine. However, it does support multiple domains / sites per configuration. This virtual machine is a particularly good fit if you run Ubuntu 14.04 LTS on your servers. |
| 4 | +This virtual machine configuration is designed to have ONE application per machine. However, it does support multiple domains / sites per configuration. This virtual machine is a particularly good fit if you run Ubuntu 16.04 LTS on your servers. |
5 | 5 |
|
6 |
| -- [Ubuntu](http://www.ubuntu.com/) 14.04 Trusty 64bit |
7 |
| -- [NGINX](http://nginx.org/) + [PHP5-FPM](http://php-fpm.org/) _(optional)_ |
8 |
| -- [PHP](http://php.net/) 5.6 _(optional)_ |
| 6 | +- [Ubuntu](http://www.ubuntu.com/) 16.04 Xenial 64bit |
| 7 | +- [NGINX](http://nginx.org/) + [PHP7-FPM](http://php-fpm.org/) _(optional)_ |
| 8 | +- [PHP](http://php.net/) 7.1 _(optional)_ |
9 | 9 | - [Laravel Tools](http://laravel.com/) Laravel / Lumen / Envoy Tools _(optional)_
|
10 | 10 | - [NodeJS](http://nodejs.org/) v0.10.29 _(optional)_
|
11 | 11 | - [MailCatcher](http://mailcatcher.me/) _(optional)_
|
@@ -41,7 +41,7 @@ dbpasswd: "password"
|
41 | 41 | databases: []
|
42 | 42 | sites: []
|
43 | 43 | php_configs: []
|
44 |
| -php_modules: ["php5-mysql", "php5-gd", "php-apc", "php5-mcrypt", "php5-curl", "php5-intl", "php5-memcached"] |
| 44 | +php_modules: ["php7.1-mysql", "php7.1-gd", "php-apcu", "php7.1-mcrypt", "php7.1-curl", "php7.1-intl", "php-memcached"] |
45 | 45 | install_db: "no"
|
46 | 46 | install_web: "no"
|
47 | 47 | install_ohmyzsh: "no"
|
@@ -71,14 +71,13 @@ swap_size_in_mb: "1024"
|
71 | 71 |
|
72 | 72 | ```ruby
|
73 | 73 | Vagrant.configure("2") do |config|
|
74 |
| - config.vm.box = "trusty64" |
75 |
| - config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" |
| 74 | + config.vm.box = "ubuntu/xenial64" |
76 | 75 |
|
77 | 76 | config.vm.network :private_network, ip: "10.10.10.10"
|
78 | 77 |
|
79 | 78 | config.vm.provider :virtualbox do |v|
|
80 | 79 | v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
|
81 |
| - v.customize ["modifyvm", :id, "--memory", 768] |
| 80 | + v.customize ["modifyvm", :id, "--memory", 1024] |
82 | 81 | v.customize ["modifyvm", :id, "--name", "CHANGE ME BEFORE USE"]
|
83 | 82 | end
|
84 | 83 |
|
|
131 | 130 |
|
132 | 131 | ```ruby
|
133 | 132 | Vagrant.configure("2") do |config|
|
134 |
| - config.vm.box = "trusty64" |
135 |
| - config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" |
| 133 | + config.vm.box = "ubuntu/xenial64" |
136 | 134 |
|
137 | 135 | config.vm.network :private_network, ip: "10.10.10.10"
|
138 | 136 |
|
|
0 commit comments