-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.yml
90 lines (65 loc) · 1.93 KB
/
variables.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
# This file stores IP addresses, passwords, and usernames that Vagrant will use to assign networking/auth information to
# virtual machines.
#
# It exists because editing/viewing this file is easier than hunting for strings in a really long Ruby source code file.
# Local machine config for CI and testing.
local:
scheme: http
host: localhost
port: 8080
uri: searchable-video-library
# Location of user's private key to clone the Git repo with.
ssh-key-location: ~/.ssh/id_rsa_2019_team_07f
private-repo-url: [email protected]:illinoistech-itm/2019-team-07f.git
public-repo-url: https://github.com/HenryFBP/2019-team-07f.git
ssl-cert:
team-name: Team Teem
team-org: Illinois Institute of Technology
country: US
state: Illinois
city: Chicago
password: password
# VirtualBox's host IP address.
# This is what the VMs see connecting to them when you SSH into the VMs.
host-ip: 10.0.2.2
# Virtualbox's host subnet.
host-subnet: 10.0.2.0
# Subnet IP of private network.
subnet: 10.3.0.0
# Config for db box.
db:
# Hostname of database.
hostname: db
# IP address of database.
ip: 10.3.0.10
# (outwards-facing) port of database.
port: 3306
# Outwards-facing netdata port.
netdata-port: 19998
# Username and password to the database, accessible only by the web IP address.
username: webserver
password: password
# Schema to use for the database.
schema: searchable-video-library
# Config for web box.
web:
# Hostname of web server.
hostname: web
# IP address of web server.
ip: 10.3.0.11
# Outwards-facing netdata port.
netdata-port: 19999
# Location to mount NFS drive to on web box.
mount-location: /mnt/nfs_videos
# Config for storage box.
storage:
# Hostname of web server.
hostname: storage
# IP address of web server.
ip: 10.3.0.12
# Outwards-facing netdata port.
netdata-port: 19997
# Location the GitHub repository is cloned to.
repo_location: /home/vagrant/2019-team-07f
...