forked from jonpugh/vansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.global.yml
52 lines (41 loc) · 1.17 KB
/
settings.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
# Settings that are applied to the templates and used in scripts.
---
# Vansible settings
vansible_tags: 'common,drush'
vansible_ip: '1.2.3.4'
vansible_playbook: 'playbook.yml'
vansible_memory: '2048'
vansible_adapter: 'wlan0'
# 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'
# 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'