forked from liip/drifter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.yml.dist
59 lines (47 loc) · 2.08 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
---
# 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
}
# 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/"
# 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"