forked from liip/drifter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.yml.dist
80 lines (64 loc) · 2.86 KB
/
parameters.yml.dist
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
---
# Name of your project, will also be the vagrant box name
project_name: "example"
# Main hostname through which the vagrant box will be accessible
hostname: "example.lo"
# Alternative hostnames through which you want to access the vagrant box
hostnames: []
# Ports you want forwared to your host. See https://www.vagrantup.com/docs/networking/forwarded_ports.html
# for details.
forwarded_ports: {
"80": "8080", # HTTP
"443": "8443", # HTTPS
"3000": "3000", # BrowserSync default port
}
# Virtual machine memory size use in MB. Defaults to 4096. Uncomment and change this
# value to suit your needs.
# Note: only used with VirtualBox provider.
# memory: 1024
# Virtual machine CPU's count use. Defaults to 2. Uncomment and change this
# value to suit your needs.
# Note: only used with VirtualBox provider.
# cpus: 1
# By default Vagrant managed different IPs for all boxes. But you can force it
# here if you want. WARNING, this parameter will not guarantee that your box
# will be accessible at this IP depending on your network configuration or
# provider choice.
# box_ip: "10.10.10.10"
# Name of the database to create for your project if you include the
# MySQL or PostgreSQL role
database_name: "example"
# Root directory of your project for the webserver and other purposes
root_directory: "/vagrant/"
# Synced folder type to use. Only "nfs" and "virtualbox" are supported by
# drifter. Defaults to "nfs". Uncomment the following line to use the
# Virtualbox shared folder implementation.
# synced_folder_type: "virtualbox"
# Do we activate SSL ? The CA will be copied to your project dir, you can then
# add it to your computer keychain
# ssl: yes
# For a PHP project, you might want to set the following
# Default reporting level of PHP errors
# php_error_reporting: "E_ALL & ~E_NOTICE"
# For a Django or Flask project, you might want to set the following
# pip_requirements: "requirements/dev.txt"
# if you want to dissable ssh StrictHostKeyChecking (needs the ssh role)
# this has security issues, you better add your ssh host keys in the ssh role
# ssh_no_stricthostkeychecking: true
# For the gitlabci roles, it installs its scripts into /scripts/
# If you want another folder for that, adjust it here
# ci_scripts_folder: scripts/
# If you need to add custom hosts into /etc/hosts, add them here
# hosts:
# - host: someotherhost
# ip: 192.168.12.34
# If you want to use ubuntu instead of debian (or any other box),
# uncomment this. You can also replace "base" with "php7", if you need
# php7 (with fpm and nginx) anyway.
# box_name: "drifter/trusty64-base"
# box_url: "https://vagrantbox-public.liip.ch/drifter-trusty64-base.json"
# Default Java version is 7. If you need another java version, uncomment
# the matching line and set the correct value.
# Set your version according to your needs and your Linux distribution.
# java_jre_version: "7"
# java_jdk_version: "7"