-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop.yaml
34 lines (31 loc) · 876 Bytes
/
desktop.yaml
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
---
- hosts: localhost
become: true
vars:
php_version: '7.4'
#set your linux username
user: 'user'
user_home: '/home/{{ user }}'
#set your local mysql pass
mysql_root_password: 'pass'
root_email: 'user@user.com'
timezone: 'Europe/Moscow'
nginx_conf: './roles/nginx/templates/nginx.conf'
adminer_resource: 'https://github.com/vrana/adminer/releases/download/v4.7.7/adminer-4.7.7-en.php'
php_fpm_pool_pm: 'static'
php_fpm_pool_max_children: '8'
php_fpm_pool_min_spare_servers: '1'
php_fpm_pool_max_spare_servers: '2'
php_fpm_pool_process_idle_timeout: '512s'
php_fpm_pool_max_requests: '256'
phpstorm_version: 2020.1
phpstorm_install_dir: /opt
phpstorm_bin: /usr/local/bin/phpstorm
nodejs_version: "12.16"
roles:
- soft
- mysql
- nginx
- php
- adminer
- php-storm