Do not limit service by default
This commit is contained in:
parent
90de9d5861
commit
6c6227919d
6 changed files with 8 additions and 6 deletions
|
@ -3,10 +3,6 @@ php_fpm_log_dir: /var/log/phpfpm
|
||||||
php_fpm_pool_dir: "/etc/php/{{ php_version.stdout }}/fpm/pool.d"
|
php_fpm_pool_dir: "/etc/php/{{ php_version.stdout }}/fpm/pool.d"
|
||||||
php_fpm_pool_config_file: "{{ php_fpm_pool_dir }}/%i.cfg"
|
php_fpm_pool_config_file: "{{ php_fpm_pool_dir }}/%i.cfg"
|
||||||
|
|
||||||
php_fpm_cpu_quota: "100%"
|
|
||||||
php_fpm_memory_high: "25%"
|
|
||||||
php_fpm_memory_max: "35%"
|
|
||||||
|
|
||||||
apache_php_module_name: "libapache2-mod-php{{ php_version.stdout }}"
|
apache_php_module_name: "libapache2-mod-php{{ php_version.stdout }}"
|
||||||
|
|
||||||
php_fpm_config:
|
php_fpm_config:
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- name: "PHP | Copy template for PHP-FPM systemd service and socket"
|
- name: "PHP | Copy template for PHP-FPM systemd service and socket"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: "systemd/{{ item }}"
|
src: "systemd/{{ item }}.j2"
|
||||||
dest: "/etc/systemd/system/{{ item }}"
|
dest: "/etc/systemd/system/{{ item }}"
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
loop:
|
loop:
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
# Don't override local changes
|
# Don't override local changes
|
||||||
- name: "User | Create PHP-FPM pool"
|
- name: "User | Create PHP-FPM pool"
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: fpmpool.cfg
|
src: fpmpool.cfg.j2
|
||||||
dest: "/etc/php/{{ php_version.stdout }}/fpm/pool.d/{{ php_user }}.cfg"
|
dest: "/etc/php/{{ php_version.stdout }}/fpm/pool.d/{{ php_user }}.cfg"
|
||||||
force: false
|
force: false
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
|
|
|
@ -41,9 +41,15 @@ SystemCallErrorNumber=EPERM
|
||||||
SystemCallFilter=@system-service
|
SystemCallFilter=@system-service
|
||||||
|
|
||||||
# Resources
|
# Resources
|
||||||
|
{% if php_fpm_cpu_quota is defined %}
|
||||||
CPUQuota={{ php_fpm_cpu_quota }}
|
CPUQuota={{ php_fpm_cpu_quota }}
|
||||||
|
{% endif %}
|
||||||
|
{% if php_fpm_memory_high is defined %}
|
||||||
MemoryHigh={{ php_fpm_memory_high }}
|
MemoryHigh={{ php_fpm_memory_high }}
|
||||||
|
{% endif %}
|
||||||
|
{% if php_fpm_memory_max is defined %}
|
||||||
MemoryMax={{ php_fpm_memory_max }}
|
MemoryMax={{ php_fpm_memory_max }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
Loading…
Reference in a new issue