Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ---
  2. - name: Install Drupal and Drush with MariaDB, Nginx, and PHP-FPM
  3. hosts: 127.0.0.1
  4. connection: local
  5. remote_user: vagrant
  6. become: yes
  7.  
  8. vars:
  9.  
  10. mysql_root_password: 'my_secure_pass'
  11. mysql_bind_address: private_mysql_server_ip
  12. query_cache_limit: 4M
  13. query_cache_size: 256M
  14. key_buffer_size: 128M
  15. long_query_time: 2
  16. myisam_sort_buffer_size: 128M
  17. innodb_buffer_pool_size: 2G
  18. innodb_log_file_size: 512M
  19.  
  20. dbs:
  21. drupal8:
  22. dbuser: drupal8
  23. dbpass: test
  24. dbhost: localhost
  25.  
  26. roles:
  27. - { role: common, tags: [common] }
  28. - { role: mysql , tags: [mysql] }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement