forked from mcuyar/station
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.yaml
72 lines (63 loc) · 2.13 KB
/
config-sample.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
# ------------------------------------------------------
# Vagrant Box
# ------------------------------------------------------
# Configure the vagrant box to use with station
#
# A good option for customizing a box for station
# is using laravel/settler: https://github.com/laravel/settler
box: laravel/homestead
# ------------------------------------------------------
# VM Hostname
# ------------------------------------------------------
# Configure a custom hostname
# for the vagrant environment
hostname: station
# ------------------------------------------------------
# VM IP Address
# ------------------------------------------------------
# Bind a custom ip address to the virtual machine
ip: "192.168.10.10"
# ------------------------------------------------------
# VM Memory Allocation
# ------------------------------------------------------
# Amount of memory to allocate
# from the host environment
memory: 2048
# ------------------------------------------------------
# VM CPU
# ------------------------------------------------------
# Number of CPU's to allocate
# from the host environment
cpus: 1
# ------------------------------------------------------
# VM Port Forwarding
# ------------------------------------------------------
# Forward ports to the host machine
# to allow access from localhost (127.0.0.1)
forwarded_ports:
http: 8000
mysql: 3306
postgresql: 5432
# ------------------------------------------------------
# SSH Config
# ------------------------------------------------------
# Pass ssh public and private keys
# from the host machine to the vm
ssh:
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
# ------------------------------------------------------
# Set git configuration for the vagrant environment
# ------------------------------------------------------
# Set the path to your hosts/user .gitconfig
# git-config: ~/.gitconfig
# Set config for the environment manually
# Visit http://git-scm.com/book/zh/v2/Customizing-Git-Git-Configuration
# for git config options
git-config:
user.name: "Your Name"
user.email: you@yourdomain.com
# colors.ui: "true"
# push.default: simple