1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Update install.yml

This commit is contained in:
A Holt 2018-09-22 11:21:16 -04:00 committed by GitHub
parent 80dbbe9f61
commit 13e7784d6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,11 +56,11 @@
line: "{{ item.line }}"
when: wordpress_raise_php_limits
with_items:
- { regexp: '^upload_max_filesize', line: 'upload_max_filesize 64M ; default is 2M' }
- { regexp: '^post_max_size', line: 'post_max_size 128M ; default is 8M' }
- { regexp: '^memory_limit', line: 'memory_limit 256M ; default is 128M' }
- { regexp: '^max_execution_time', line: 'max_execution_time 300 ; default is 30' }
- { regexp: '^max_input_time', line: 'max_input_time 300 ; default is 60' }
- { regexp: '^upload_max_filesize', line: 'upload_max_filesize = 64M ; default is 2M' }
- { regexp: '^post_max_size', line: 'post_max_size = 128M ; default is 8M' }
- { regexp: '^memory_limit', line: 'memory_limit = 256M ; default is 128M' }
- { regexp: '^max_execution_time', line: 'max_execution_time = 300 ; default is 30' }
- { regexp: '^max_input_time', line: 'max_input_time = 300 ; default is 60' }
# - name: Rename /library/wordpress* to /library/wordpress
# shell: if [ ! -d {{ wp_abs_path }} ]; then mv {{ wp_abs_path }}* {{ wp_abs_path }}; fi