Update cache size

This commit is contained in:
Lars Hahn 2024-08-11 12:36:17 +02:00
parent 4e79f42674
commit f9429c4b18
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ php_memory_limit: 128M
php_upload_max_filesize: 2M php_upload_max_filesize: 2M
php_post_max_size: 8M php_post_max_size: 8M
php_opcache_interned_strings_buffer: 8 php_opcache_interned_strings_buffer: 32
php_opcache_save_comments: 1 php_opcache_save_comments: 1
php_opcache_revalidate_freq: 2 php_opcache_revalidate_freq: 2
php_opcache_validate_timestamps: 1 php_opcache_validate_timestamps: 1

View File

@ -31,8 +31,8 @@
- name: configure PHP fpm - name: configure PHP fpm
lineinfile: lineinfile:
path: "{{ php_path }}/fpm/php.ini" path: "{{ php_path }}/fpm/php.ini"
regexp: '^(;|){{ item.key }} = ' regexp: '^(;|){{ item.key }}='
line: "{{ item.key }} = {{ item.value }}" line: "{{ item.key }}={{ item.value }}"
loop: "{{ php_fpm_config + php_fpm_config_default }}" loop: "{{ php_fpm_config + php_fpm_config_default }}"
loop_control: loop_control:
label: "{{ item.key }}" label: "{{ item.key }}"