-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.config.yml
189 lines (174 loc) · 4.03 KB
/
default.config.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
---
# System configuration
git_username: "{{ current_user }}"
git_fullname: "{{ full_name }}"
git_email: "{{ email }}"
hostname: "{{ current_user }}"
# Applications
user_applications:
# - battery-monitor
- indicator-keylock
- clipboard-manager # Ubuntu >= 17
- fzf
- google-chrome-stable
- firefox-de
- putty
# - terminator
- filezilla
- toolboxapp # Jetbrains stack
# Comment out any extra utilities you don't want to install. If you don't want
# to install *any* extras, set this value to an empty set, e.g. `[]`.
installed_extras:
- java
- nodejs
- ruby
- yarn
# - docker
- virtualbox
- sublime
# - atom
# Extra packages (add here any OS package you need),
# keep in mind your OS distribution for some packages.
extra_packages:
- htop
- gparted
- liberror-perl
- libqt5x11extras5
- libsdl1.2debian
- python-pip
- pulseaudio
- meld
- vim
# - synapse
- autojump
- xclip
# Enable basic server security configuration
extra_security_enabled: true
firewall_enabled: false
firewall_allowed_tcp_ports:
- "22"
- "25"
- "80"
- "81"
- "111"
- "443"
- "1110"
- "1197"
- "2049"
- "2222"
- "3306"
- "4045"
- "4444"
- "8025"
- "8080"
- "8443"
- "8983"
- "9000"
- "9200"
- "32764"
- "32765"
- "32766"
- "32767"
- "32768"
- "32769"
firewall_allowed_udp_ports:
- "111"
- "1110"
- "1197"
- "2049"
- "3306"
- "4045"
- "9000"
- "32764"
- "32765"
- "32766"
- "32767"
- "32768"
- "32769"
firewall_log_dropped_packets: true
firewall_disable_firewalld: true
firewall_disable_ufw: true
# PHP Configuration. Currently-supported versions: 5.6, 7.0, 7.1.
# See version-specific notes: http://docs.drupalvm.com/en/latest/configurations/php/
php_version: "7.1"
php_packages_extra:
- "php{{ php_version }}-bcmath"
- "php{{ php_version }}-bz2"
- "php{{ php_version }}-ldap"
- "php{{ php_version }}-mysql"
- "php{{ php_version }}-pgsql"
- "php{{ php_version }}-soap"
php_enable_webserver: false
php_install_recommends: no
php_memory_limit: "192M"
php_display_errors: "On"
php_display_startup_errors: "On"
php_realpath_cache_size: "1024K"
php_sendmail_path: "/usr/sbin/sendmail -t -i"
php_opcache_enabled_in_ini: true
php_opcache_memory_consumption: "192"
php_opcache_max_accelerated_files: 4096
php_max_input_vars: "4000"
php_enable_php_fpm: false
# We must set the port other than 9000 to avoid collisions wwith XDebug
php_fpm_listen: "127.0.0.1:9090"
composer_path: /usr/bin/composer
composer_home_path: "/home/{{ current_user }}/.composer"
composer_home_owner: "{{ current_user }}"
composer_home_group: "{{ current_user }}"
composer_global_packages:
- { name: hirak/prestissimo, release: '^0.3' }
- { name: deployer/deployer, release: '^4' }
- { name: consolidation/robo, release: '^1' }
# Node.js configuration (if enabled above).
# Valid examples: "0.10", "0.12", "4.x", "5.x".
# NOTE! Use 6.x version for Ubuntu 17.10.
nodejs_version: "6.x"
nodejs_npm_global_packages:
- name: bower
- name: grunt
- name: gulp
- name: yo
nodejs_install_npm_user: "{{ current_user }}"
npm_config_prefix: "/home/{{ current_user }}/.npm-global"
# Ruby Configuration (if enabled above).
ruby_install_gems_user: "{{ current_user }}"
ruby_install_gems:
- compass
- bourbon
- neat
- bitters
- refills
# Vagrant
vagrant_version : '2.0.2'
vagrant_platform : x86_64
# VirtualBox
virtualbox_apt_package: virtualbox-5.1
# Atom
atom_configuration:
- username: "{{ current_user }}"
atom_packages:
- minimap
- linter
- atom-beautify
- file-icons
atom_config:
"*":
core:
projectHome: "/home/{{ current_user }}/workspace"
editor:
showIndentGuide: true
showInvisibles: true
# Oh-My-ZSH
# Important: oh-my-zsh is installed per user so you need to specify the users to install it for.
oh_my_zsh_configuration:
- username: "{{ current_user }}"
oh_my_zsh:
theme: bureau
plugins:
- git
- vagrant
- Composer
- vi-mode
- vi-interaction
- autojump