-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathparameters.yml.dist
95 lines (74 loc) · 3.29 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
# 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
}
# Backingstore used by LXC. Defaults to dir. Uncomment and change this
# value to suit your needs.
# Note: only used with vagrant-lxc provider.
# backingstore: dir
# 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"
# To pick a specific PHP version, change this value
# php_version: "7.3"
# For a Django or Flask project, you might want to set the following
# pip_requirements: "requirements/dev.txt"
# if you want to disable 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 any other box, change these
box_name: "drifter/stretch64-base"
box_url: "https://vagrantbox-public.liip.ch/drifter-stretch64-base.json"
# For using Ubuntu 18.04 LTS, Bionic Beaver use these values
# box_name: "drifter/bionic64-base"
# box_url: "https://vagrantbox-public.liip.ch/drifter-bionic64-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"
# Ansible version to use. If you need another version, you can define that here
# and it will be installed during provisioining.
# ansible_version: "2.7.0"