1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/wordpress/defaults/main.yml

23 lines
689 B
YAML
Raw Normal View History

2020-02-16 03:49:27 +00:00
# If using WordPress intensively, consider setting nginx_high_php_limits in:
2019-09-05 01:42:21 +00:00
# /etc/iiab/local_vars.yml
2019-03-05 03:36:38 +00:00
# wordpress_install: False
# wordpress_enabled: False
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
2018-09-22 14:40:01 +00:00
2017-09-20 22:11:00 +00:00
wordpress_download_base_url: https://wordpress.org
wordpress_src: latest.tar.gz
2017-11-15 16:00:00 +00:00
wp_db_name: iiab_wp
wp_db_user: iiab_wp
2017-05-27 18:09:50 +00:00
wp_db_user_password: changeme
2017-11-15 16:00:00 +00:00
2020-01-17 23:57:02 +00:00
wp_install_path: "{{ content_base }}" # /library
2017-11-15 16:00:00 +00:00
2020-01-17 23:57:02 +00:00
wp_abs_path: "{{ wp_install_path }}/wordpress" # /library
2017-11-15 16:00:00 +00:00
2020-01-17 23:57:02 +00:00
wp_url: /wordpress # For http://box/wordpress
wp_full_url: "http://{{ iiab_hostname }}{{ wp_url }}"