https://github.com/alexwenzel/webdev-box
Vagrant Boxes for Webdev
https://github.com/alexwenzel/webdev-box
Last synced: 3 months ago
JSON representation
Vagrant Boxes for Webdev
- Host: GitHub
- URL: https://github.com/alexwenzel/webdev-box
- Owner: alexwenzel
- Created: 2016-02-23T22:12:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T09:16:11.000Z (over 9 years ago)
- Last Synced: 2025-01-10T18:27:37.032Z (5 months ago)
- Language: PHP
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Ubuntu Server 32bit 14.04 LTS with Apache, MySQl, PHP and several development tools installed.
This box is based on [ubuntu/trusty32](https://atlas.hashicorp.com/ubuntu/boxes/trusty32).
## Components
* apache
* mysql
* php 5.5
* sqlite
* vim
* git
* composer
* nodejs, npm
* cUrl
* xdebug## Apache
Web Document Root:
```
/var/www
```## MySQL
User:
```
root
```Password:
```
root
```## xDebug
Eanbled by trigger:
```
XDEBUG_PROFILE=1
```Output directory:
```
/var/www/xdebug/
```## Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "alexwenzel/webdev"
config.vm.network "private_network", ip: "192.168.10.10"
config.vm.synced_folder "./www", "/var/www"
config.vm.provider "virtualbox" do |vb|
vb.memory = 2048
end
end