forked from opendevshop/devshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.yml
71 lines (49 loc) · 1.93 KB
/
vars.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
# The version to install.
devshop_version: 0.x
# The version of drush to install.
# This is passed directly to the `composer global require` command:
# composer global require drush/drush:{{ drush_version }}
drush_version: 6.*
# VAGRANT variables.
# Set development to TRUE if you wish to contribute to devshop development.
# You may also add a file to this folder called ".development_mode". If this file is present, development mode will always be enabled.
vagrant_development: FALSE
vagrant_private_network_ip: 10.10.10.10
vagrant_install_script: install.sh
# Default server_webserver is apache, for now. In vagrant, let's default to nginx.
# vagrant_install_script_args: [--playbook=/vagrant]
vagrant_install_script_args: [--playbook=/vagrant]
# Defaults virtualbox vagrant machines to 4GB.
vagrant_virtualbox_memory: 4096
remote_vagrant_private_network_ip: 10.10.10.11
remote_server_hostname: devshop.remote
remote2_vagrant_private_network_ip: 10.10.10.12
remote2_server_hostname: devshop.remote2
# DEVSHOP variables
# The hostname will be overridden by install.sh to match the server it is run on.
server_hostname: devshop.site
server_webserver: apache
local_bin_path: /usr/local/bin
mysql_root_password: RandomizedByInstallSh
php_memory_limit: 256M
php_post_max_size: 32M
php_upload_max_filesize: 32M
php_timezone: America/New_York
ansible_playbook: playbook.yml
devshop_working_copy: --working-copy
devshop_provision_repo: https://github.com/opendevshop/devshop_provision.git
drush_dl_method: wget
devshop_drush_packages:
provision: 6.x-2.x
provision_git: 6.x-1.x
provision_logs: 6.x-1.x
provision_solr: 6.x-2.x
provision_tasks_extra: 6.x-2.x
provision_site_backup_manager: 6.x-2.x
registry_rebuild: 7.x-2.2
devshop_makefile: build-devmaster.make
devshop_install_profile: devmaster
aegir_user_uid: 12345
drush_path: "{{ local_bin_path }}/drush"
devshop_cli_path: "{{ local_bin_path }}/devshop"
supervisor_running: true