diff --git a/roles/httpd_php/templates/php.ini.j2 b/roles/httpd_php/templates/php.ini.j2 index d577903..5e955e2 100644 --- a/roles/httpd_php/templates/php.ini.j2 +++ b/roles/httpd_php/templates/php.ini.j2 @@ -4,7 +4,7 @@ file_uploads={{ php_conf_file_uploads | default('off') }} upload_max_filesize={{ php_conf_upload_max_filesize | default('2M') }} max_file_uploads={{ php_conf_max_file_uploads | default('20') }} max_execution_time={{ php_conf_max_execution_time | default('30') }} -memory_limit={{ php_conf_memory_limit | default('128M') }} +memory_limit={{ php_conf_memory_limit | default('256M') }} post_max_size={{ php_conf_post_max_size | default('8M') }} max_input_time=60 diff --git a/roles/kimai/defaults/main.yml b/roles/kimai/defaults/main.yml index b495732..a271ea7 100644 --- a/roles/kimai/defaults/main.yml +++ b/roles/kimai/defaults/main.yml @@ -5,12 +5,12 @@ # You can set it to a number or a simple string (no special chars) kimai_id: 1 # Kimai version to deploy -kimai_version: '1.30.11' +kimai_version: '2.0.26' # URL of the archive kimai_archive_url: https://github.com/kevinpapst/kimai2/archive/refs/tags/{{ kimai_version }}.tar.gz # Expected sha256 of the archive -kimai_archive_sha256: 0800ed6321bb5ec1e3fbd984a1b44b5d6adb92ca16475a7194f4d6835139f30b +kimai_archive_sha256: 70349acadfb01788406a17f546d35f5b3270f5b4f09c7eb57cfc8d3f5e23fb50 # Directory where kimai will be installed kimai_root_dir: /opt/kimai_{{ kimai_id }} @@ -21,7 +21,7 @@ kimai_manage_upgrade: True # Will be created kimai_php_user: php-kimai_{{ kimai_id }} # PHP version under which kimai will run -kimai_php_version: 81 +kimai_php_version: 82 # Or you can specify here the name of a custom PHP FPM pool. See the httpd_php role # bookstack_php_fpm_pool: custom_kimai diff --git a/roles/kimai/tasks/conf.yml b/roles/kimai/tasks/conf.yml index 3f05e39..4376a6d 100644 --- a/roles/kimai/tasks/conf.yml +++ b/roles/kimai/tasks/conf.yml @@ -43,10 +43,10 @@ block: - name: Update the database - command: /bin/php{{ kimai_php_version }} {{ kimai_root_dir }}/app/bin/console kimai:update -n + command: /bin/php{{ kimai_php_version }} -d memory_limit=512M {{ kimai_root_dir }}/app/bin/console kimai:update -n - name: Clear kimai cache - command: /bin/php{{ kimai_php_version }} {{ kimai_root_dir }}/app/bin/console kimai:reload --env=prod + command: /bin/php{{ kimai_php_version }} -d memory_limit=512M {{ kimai_root_dir }}/app/bin/console kimai:reload --env=prod become_user: "{{ kimai_php_user }}" tags: kimai diff --git a/roles/n8n/defaults/main.yml b/roles/n8n/defaults/main.yml index 558c020..f2e9213 100644 --- a/roles/n8n/defaults/main.yml +++ b/roles/n8n/defaults/main.yml @@ -1,7 +1,7 @@ --- # Version to deploy -n8n_version: 0.224.0 +n8n_version: 0.230.3 # Root directory where n8n will be installed n8n_root_dir: /opt/n8n # User account under which n8n will run