-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
45 lines (44 loc) · 2.03 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
config:
# select a master setting for Vagrant
use: 'master_environment'
master_environment:
# Ubuntu Trusty 14.04 by Default.
base_box: 'ubuntu/trusty64'
memory: 1024
cpus: 1
ip: 192.168.4.126
# the port you will access the VM from on the Host of localhost. i.e localhost:8866
access_port: '80' # Your OS
guest_port: '80' # Virtual Machine Guest. Default port 80 is blocked when not sudo.
# accessing "localhost/" would be akin to "http://podtest8880.dev:8888"
# Apache runs on port 80 by default. Read the readme to change ports.
hostname: 'local.dev'
# Sync Host and Guest Machine folders.
synced_folder:
# Host is relative to where Vagrantfile is.
host: 'www'
# guest is relative to where VM root is.
guest: '/vagrant/www'
# these get attached to each commit. Can be project specific, but this is so user can get to developing right after VM is up.
git_user_name: 'YOUR_GITHUB_USERNAME'
git_user_email: 'YOUR_GITHUB_EMAIL'
# a_different_master_environment:
# # Ubuntu Trusty 14.04 by Default.
# base_box: 'ubuntu/trusty64'
# memory: 1024
# cpus: 2
# ip: 192.168.4.109
# # the port you will access the VM from on the Host of localhost. i.e localhost:8866
# access_port: '8866'
# # Access this URL locally w/o need for port.
# hostname: 'somewhere.local'
# # Sync Host and Guest Machine folders.
# synced_folder:
# # Host is relative to where Vagrantfile is.
# host: 'somewhere_else'
# # guest is relative to where VM root is.
# guest: '/vagrant/somewhere_else'
# # these get attached to each commit. Can be project specific, but this is so user can get to developing right after VM is up.
# git_user_name: 'YOUR_USERNAME'
# git_user_email: 'YOUR_EMAIL'
# < Add more projects as needed if base_box or Vagrant settings are different >