forked from jonpugh/vansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.global.yml
71 lines (59 loc) · 1.46 KB
/
vars.global.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
# Settings that are applied to the templates and used in scripts.
---
# Vansible settings
vansible_ip: '1.2.3.4'
vansible_playbook: 'playbook.yml'
vansible_memory: '2048'
# Hostname is important as we need to delete an anonymous MySQL
# user that is created with this name, make sure you match this
# up with the output of the command 'hostname' on the server.
server_hostname: 'localhost'
path_to_drush_aliases: 'sites/all/drush'
path_to_solr_conf: 'sites/all/modules/contrib/search_api_solr/solr-conf/3.x'
packages:
- php5
- apache2
- mysql-server
- mysql-client
- php5-mysql
- php-apc
- php5-mcrypt
- php5-oauth
- php5-xmlrpc
- php5-curl
- php5-gd
- sendmail
- unzip
- python-mysqldb
- vim
- curl
- solr-tomcat
# mysql
mysql_root_password: 'password'
# apache
apache_server_admin: '[email protected]'
apache_server_alias: 'localhost'
# php.ini
php_memory_limit: '256M'
php_max_execution_time: '90'
php_display_errors: 'On'
php_display_startup_errors: 'On'
php_html_errors: 'On'
php_post_max_size: '32M'
php_upload_max_filesize: '32M'
php_date_timezone: 'US/Central'
# apc.ini
apc_rfc1867: '1'
apc_shm_size: '256M'
apc_shm_segments: '1'
apc_num_files_hint: '0'
# my.cnf
mysql_max_allowed_packet: '128M'
mysql_character_set_server: 'utf8'
mysql_collation_server: 'utf8_general_ci'
innodb_file_per_table: 'innodb_file_per_table'
# vsftpd
vsftpd_anonymous_enable: 'NO'
vsftpd_local_enable: 'YES'
vsftpd_write_enable: 'YES'
vsftpd_local_umask: '002'